tags:

views:

189

answers:

2

Will calling

$ httpd graceful

clear out the APC cache, or do I have to do a full-blown

$ httpd restart

to do it? (Keeping in mind that I know there are better ways to do it, like calling apc_clear_cache() programmatically).

+2  A: 

Both will clear APC cache.

You can also clear cache using the APC.php script.

ZZ Coder
+1  A: 

httpd graceful does a full restart, it simply waits until there are no active connections before doing so

Mark Baker