I have Debian server with php5-fpm and nginx installed.
Just installed apc cache:
apt-get install php5-apc
/etc/init.d/php5-fpm restart
/etc/init.d/nginx restart
when I modify any php file and reload it in the browser it shows all changes immediately. Does it mean that APC cache is not running if it does not show cached file?
apt-get remove php5-apc
apt-get install php-apc
didn't help. Any changes in php files are visible immediately. In phpinfo() APC shows up, so, I think everything should be ok.
My questions:
- How do I check APC cache is running?
- What is the correct command to install APC cache
apt-get install php-apc
or
apt-get install php5-apc
(both of them works)