O..
O..

Reputation: 11295

Which one would you choose ; XCache or APC?

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

Answers (3)

Ian Gregory
Ian Gregory

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

matt
matt

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

David Barnes
David Barnes

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

Related Questions