我只是想知道PostgreSQL中与MySQL的等价查询是什么
SET SESSION query_cache_type = ON SET SESSION query_cache_type = OFF
答案 0 :(得分:3)
没有等价物。 PostgreSQL与MySQL的内部架构截然不同,其缓存(“共享缓冲区”)在另一个层面上运行。它不存储查询结果,而是存储计算这些结果所需的数据(基本上是查询计划和表)。
https://www.postgresql.org/docs/current/static/runtime-config-resource.html
https://www.postgresql.org/message-id/14010534715277@mail.emproshunts.com
http://www.mail-archive.com/pgsql-hackers@postgresql.org/msg109033.html