I was install APC on my web server and find some problem... Not all requests APC is store in memory. Over 30% requests to cache (apc_store) not working... Why it happens and how i can do ideal caching??
Sorry my bad english. Thanks for help.
You probably are trying to cache more data than APC can store. By default APC only stores up to 30MB of data, any additional data is causes old data in the cache to be removed to make room for the new data.
You can increase the size of the APC cache in the apc.ini file. However, I recommend that you upgrade to a larger caching system such as memcached which will also support more servers as you grow.
Search for the APC.php file that came with APC/PHP
$ cd /; find -name apc.php | grep apc
apc.php file. It will tell you what you need to solve your problem.