When analyzing Postgres query execution plans, it is recommended using the BUFFERS
option:
explain (analyze, buffers) <query>;
Example:
test=# explain (analyze, buffers) select * from t1 where num > 10000 order by num limit 1000;
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------------------------