PHP缓存系统
我想知道是否有人知道好的网站,我可以在其中找到有关基于 PHP 的缓存系统以及如何制作一个的有用信息。因为我想减少 MySQL 的压力,MySQL 每 60 秒通过 jQuery AJAX 函数调用一次。
I am wondering if some one knows good sites where I can find useful information in regards to PHP based cache systems and how to make one. Since I want to reduce the stress on MySQL which is being called every 60 sec via jQuery AJAX function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ajax / jquery 在带宽使用方面非常巨大,您可以缓存结果
,例如: http://blog.digitalstruct.com/2008/02/27/php-performance-series-caching-techniques/
但你不能减少这样jquery的带宽使用量很大
但您可以缩小网站、脚本和数据库的大小(更好的数据库方案)
well ajax / jquery is immense at bandwidth usage, you can cache the results
look here for example: http://blog.digitalstruct.com/2008/02/27/php-performance-series-caching-techniques/
but you cant reduce so much the bandwidth usage of jquery
but you can trim down the size of the websites, scripts and also the database (better database scheme)
我建议您使用超级缓存,这是一种文件缓存机制,不会使用
json_encode
或serialize
。与其他 PHP 缓存机制相比,它使用简单且速度非常快。简单的 PHP 缓存机制,比 PHP 和 Redis/Memcache/APC 缓存快 500 倍HHVM
https://packagist.org/packages/smart-php/super-cache
例如:
I would suggest you to use Super Cache, which is a file cache mechanism which won't use
json_encode
orserialize
. It is simple to use and really fast compared to other PHP Cache mechanism.Simple PHP cache mechanism which is 500X Faster Caching than Redis/Memcache/APC in PHP & HHVM
https://packagist.org/packages/smart-php/super-cache
Ex: