## check if the script has been changed ## apc.stat=1
The site feels faster so I think it is working but I'm completely unsure if it is or not. How do I tell if APC is working? Something like the memcache stats that I can see somewhere?
This shows you the stats and that it is working or not. You should also be able to do a php_info() and see APC there as well. APC has cache info just like memcache - ?[url=http://www.php.net/manual/en/function.apc-cache-info.php]apc_cache_info()[/url] Just dump it using print_r in a script and you'll be able to see the stats.
[code=php][/code]
This shows you the stats and that it is working or not. You should also be able to do a php_info() and see APC there as well.
Void
print_r(apc_cache_info());
?>
This shows you the stats and that it is working or not. You should also be able to do a php_info() and see APC there as well. APC has cache info just like memcache - ?[url=http://www.php.net/manual/en/function.apc-cache-info.php]apc_cache_info()[/url] Just dump it using print_r in a script and you'll be able to see the stats. [code=php][/code] This shows you the stats and that it is working or not. You should also be able to do a php_info() and see APC there as well.
Are you sure you want to delete this post?