Hello, maybe I'm missing something, but... https://docs.phalcon.io/en/latest/reference/cache.html#apc-backend-options
I can't find a soultion how to clear all APCu cache, I'm trying to write a CLI scipt that will clear all APCu cache
$apc = $this->di->get('apc'); // get APC via DI
$apc->flush(); // as seen in Phalcon\Cache\Backend\Apc
-
I get Fatal error: Class 'APCIterator' not found
- for now I'm clearing cache via APC admin (https://github.com/jithinjose2/APC-Admin), but thats just as temp solution