server/channels/README.md
When reviewing or writing code in the server channels package, focus on SQL query performance and API layer efficiency.
EXPLAIN ANALYZE on new or modified queries against a large dataset before merging. A query that performs well on a 12M-post database may degrade significantly at 100M+ posts.Get followed by a Delete on the same row, consider using DELETE ... RETURNING to combine them into a single query.