4

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 ?

O..
  • 10,925
  • 5
  • 20
  • 8

3 Answers3

10

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.

Community
  • 1
  • 1
Ian Gregory
  • 5,770
  • 1
  • 29
  • 42
3

I use XCache because it was written by the same person who wrote lighttpd, which was written for SPEED. Works on apache, also.

David Barnes
  • 2,138
  • 5
  • 19
  • 25
1

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.

matt
  • 846
  • 2
  • 10
  • 13