你会选择哪一个; XCache 还是 APC?
我的项目中需要一个操作码缓存。我还将用于数据存储(mysql 返回的行)缓存?哪一个最适合您,为什么?
I need a opcode-cache in my project. Also i will use for the datastore (mysql returned row) cache ? Which is the best for you and WHY ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会选择APC,但只是因为它被采用为 PHP 6 的一部分。
对于这个问题也提出了一些很好的意见。
I'd choose APC, but only because it's being adopted as part of PHP 6.
There are also some good opinions offered on this question.
我使用 XCache 是因为它是由编写 lighttpd 的同一个人编写的,而 lighttpd 是为速度而编写的。也适用于 apache。
I use XCache because it was written by the same person who wrote lighttpd, which was written for SPEED. Works on apache, also.
FWIW 我使用 XCache 取得了巨大的成功(可靠性和性能方面)。我还将它与 memcache 结合使用来加速会话操作并减少对 MySQL 的点击。
FWIW I've had great success (reliability-wise and performance-wise) using XCache. I also use it in conjunction with memcache to speed up session operations and cut down on hits to MySQL.