安装postgresQL Query Cache

安装postgresQL Query Cache,第1张

概述 为了提高公司postgreSQL的读能力,需要加一个Query Cache,目前网上有一个安装资料,这总结下安装和使用的简单方式。 这里给出网上已有的架构图: 现在都是扩展名为rpm的文件,我是在linux(64位)的机器上装,下载了4个相关包如下: uqc-libevent-1.4.14b-1.x86_64.rpm uqc-libmemcached-0.43-1.x86_64.rpm uqc-

为了提高公司postgresql的读能力,需要加一个query Cache,目前网上有一个安装资料,这总结下安装和使用的简单方式。

这里给出网上已有的架构图:

现在都是扩展名为rpm的文件,我是在linux(64位)的机器上装,下载了4个相关包如下:

uqc-libevent-1.4.14b-1.x86_64.rpm
uqc-libmemcached-0.43-1.x86_64.rpm
uqc-memcached-1.4.5-1.x86_64.rpm
uqc-querycache-20110223-1.x86_64.rpm

安装是有顺序的,uqc-libmemcached-0.43-1.x86_64.rpm依赖于uqc-memcached-1.4.5-1.x86_64.rpm的。

使用命令:

rpm -ivh *.rpm

安装,默认的安装目录如图:

进入到etc目录下,有两个文件:pqcd.conf 和pqcd_hba.conf。前者是query Cache的配置信息,后者是设置远程登录验证配置信息。

启动pqcd:

/opt/uptime/querycache/bin/pqcd

关闭pqcd:

/opt/uptime/querycache/bin/pqcd stop

如何使用query Cache,登录命令就是:

psql -U postgres test -p 9999

注意:登录时需要加上端口号(9999是query Cache的默认端口号,在配置文件pqcd.conf里),这样才使用到query Cache的功能。

然后,按照官方的例子 *** 作,相关SQL语句即可。为了方便我转过来了。

Add as a comment at the beginning of SELECT statements

/* cache:refresh */ select * from ……

-<slash> <asterrisk> <space> <hint> <space> <asterisk> <slash>

cache:on (default in Active cache mode)

--Looks at the cache first. If not found,then executes on the backend,and puts the result into the cache.

cache:off(default in Passive cache mode)

--Doesn't look at the cache first. Executes on the backend,and doesn't puts the result into the cache.

cache:refresh

--Doesn't look at the cache first. Executes on the backend,and puts the result into the cache.

cache:expire

--InvalIDates query cache for specifIEd statement.(Not implemented yet)

cache:expireall

--InvalIDates all query cache.(Not implemented yet)

这里使用cache的时候要注意就是查询的结果已经缓存在Cache了,这时数据库里的数据被更新后,不会与query Cache同步(即still an old value in the cache)。

这时如果是需要实时同步的话,是需要主动使用cache:refresh的select方式,重新将数据加载到cache里。

不过在pqcd.conf里,也有一个属性query_cache_expiration表示The timeout value for query cache expiration (in seconds,default is 30).

总结

以上是内存溢出为你收集整理的安装postgresQL Query Cache全部内容,希望文章能够帮你解决安装postgresQL Query Cache所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1179479.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存