PostgreSQL Query Cache
PostgreSQL Query Cache 一个新的开源软件,用来极速提升 PostgreSQL 数据库的查询性能,通过缓存查询结果,可提升 10 ~ 100 倍。采用BSD协议授权。
PostgreSQL Query Cache enables to improve query processing performance "extremely" faster by caching query results from backends.
It delegates queries in front of the backend, like a proxy, and intercepts and caches SELECT query results (Query Cache). It also manages lifecycle of the query cache.
特点:
- 使用独立端口接受客户端的链接
- 像一个代理一样,将查询委派到后端服务器列表
- 解析并缓存 SELECT 查询结果
- 可管理查询缓存的生命周期
最新版本:
项目主页:http://code.google.com/p/pqc/