Tagged Questions

39
votes
10answers
30k views

apc vs eaccelerator vs xcache

Im doing research on which one of these to use and I can't really find one that stands out. Eaccelerator is faster than APC, but APC is better maintained. Xcache is faster but the others have easier ...
2
votes
4answers
496 views

Choosing a PHP caching technique: output caching into files vs. opcode caching

I've heard of two caching techniques for the PHP code: When a PHP script generates output it stores it into local files. When the script is called again it check whether the file with previous ...
1
vote
3answers
80 views

Should I use PHP accelerator (eAccelerator, APC, etc) in development environment?

I think the question speaks for itself.. My concern is, we would be modifying some PHP files here and there. Will the accelerator(s) know that it needs to recompile modified files (i assume they ...
0
votes
4answers
360 views

delete cache by name in apc / memcache / eaccelerator

lets assume i have these variables saved in apc,memcached and eaccelerator: article_1_0 article_1_1 article_3_2 article_3_3 article_2_4 How can i delete all cached variables that starts with ...