I really understand the general aspects of the APC cache and want to use it in my code (I know how to do this, this is not a problem).
However, I am currently using XCache as opcache and want to continue to do so, as I have the βrightβ one for my specific needs.
The reason I want to use the APC cache as a shared cache is because I am not happy with Pear's PEAR :: Cache_Lite in terms of using it to cache variables, because it stores it on disk, and disk I / O is narrow a place, while there is no RAM, and APC stores the variables in RAM, not in files on disk.
So, does anyone have experience or know if APC can only be configured as a shared cache (the API is called through it in my PHP code, like PEAR :: Cache_Lite), while I support another opcache (in my case, xcache).
Thanks.
php apc xcache
Adergaard
source share