Postgresql – Reset Postgres query cache

cachepostgresql

I'm comparing some queries, on my particular dataset, between MySQL and Postgres. Is there a Postgres equivalent to MySQL's "RESET QUERY CACHE"?

Best Answer

There was a post on serverfault a while ago that covered this topic.

Check this out...

https://stackoverflow.com/questions/1216660/see-and-clear-postgres-caches-buffers

I hope that helps.

David