Richard Halming
Richard Halming

Reputation: 1

How to disable APC caching in PHP file

Is it possible to disable apc caching in a php file? By means of a php set function of some sort?

I want to disable caching for Magento's Indexer.php file so it doesn't use APC caching.

Upvotes: 0

Views: 942

Answers (1)

Dario
Dario

Reputation: 714

You can uninstall the module, or just disable it Adding the following line to the

.htaccess file: php_flag apc.cache_by_default Off

Also keep in mind that Indexer.php will be not Cached by APC if you run it via Cron job !

Upvotes: 1

Related Questions