Reputation: 11295
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 ?
Upvotes: 4
Views: 4788
Reputation: 5820
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.
Upvotes: 10
Reputation: 846
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.
Upvotes: 1
Reputation: 2148
I use XCache because it was written by the same person who wrote lighttpd, which was written for SPEED. Works on apache, also.
Upvotes: 3