Postgres 是否提供刷新缓冲区缓存的命令?
你好 有时我需要做一些 SQL 调优任务,我通常在我的测试数据库上做这样的测试。 执行sql语句后,我想刷新包含SQL的缓冲区缓存 语句和sql结果,就像Oracle中的命令“Alter system flash buffer_cache”
PG服务器是否提供了这个的共同点?
Hi
Sometimes I need to do some SQL tuning task, I usually do such tests on my test db.
After I excute a sql statments, I want to flush the buffer cache which containing SQL
statements and sql result, just like the command in Oracle "Alter system flush buffer_cache"
Is PG server provide a commond of this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 OSX 上进行开发(我还没有在 Linux 上进行过测试),您可以使用 purge 命令强制清除磁盘缓存(刷新并清空)。然后再次运行 SQL 查询,它应该像第一次一样执行。
If you're developing on OSX (I haven't tested on linux), you can use
purge
command to force disk cache to be purged (flushed and emptied). Then run your SQL query again and it should execute as if it were the first time.