Pyrocache 与 Memcached
我在一些项目中使用了 PyroCMS,我非常喜欢它。我目前正在基于它开发另一个网站。在我的网站中,我需要处理一个大数据库,它并不是很大,但足够大到需要缓存模块。 我正在犹豫是使用内置 Pyrocache 库还是第三方缓存 memcached。那么我为什么要使用memcached呢? Pyrocache 也可以管理大数据吗? Pyrocache 与 memcached 相比有哪些优势?
在我的网站中,它将显示超过200.000个地点的信息,数据长期静态。我想使用缓存来缓存所有位置数据,这样当用户请求时,它直接返回结果,而不需要查询数据库。 Pyrocache 可以适合我的场景吗?
提前致谢, 狮子座
I have used PyroCMS for some projects, I love it so much. I am current developing another website based on it. In my website, I need to work on a big database, it is not really big but big enough to require the cache module.
I am hesitating to use either built-in Pyrocache library or third-party cache, memcached. So why should I use memcached? Can the Pyrocache manage large data as well? What are the advantages of Pyrocache in comparison with memcached?
In my website, it will display information on over 200.000 locations, data are static for a long time. I want to use the cache to cache all location datas, so when user request, it directly returns the result without query the database. Can Pyrocache suite for my scenario?
Thanks in advanced,
Leo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Pyrocache 将数据本地存储在磁盘上(不能在多个 Web 服务器之间共享)(速度不是很快)。 Memcache 将数据存储在内存中(快速),并且 Memcache 服务器/池可以在多个 Web 服务器之间共享。
Pyrocache 的主要优点是调用和安装都很简单——您不必安装和配置 memcached。
http://pyrocms.com/docs/manuals/developers/caching-data -with-pyrocache
Pyrocache stores data locally (cannot be shared between multiple web servers) on disk (not terribly fast). Memcache stores data in memory (fast), and a memcache server/pool can be shared between multiple web servers.
The main advantages of pyrocache would be simplicity both in invocation and installation -- you don't have to install and configure memcached.
http://pyrocms.com/docs/manuals/developers/caching-data-with-pyrocache