Back to TILs

Today I Learned

PostgreSQL's EXPLAIN BUFFERS for query analysis

Get detailed information about query performance: ```sql EXPLAIN (ANALYZE, BUFFERS) SELECT * FROM posts WHERE published = true; ``` This shows buffer usage, helping identify if queries are hitting cache or disk.

Learned something new? Share it with others!