I'm writing an app that uses the \Phalcon\Cache\Backend\Apc
cache class.
I currently need to get a list of all cached keys, is there a way I can do this with Phalcon without using the built in ApcIterator
class or apc_cache_info
method? This is due to the fact that I might switch from cache methods later on as the hosting server might not support APC.
Thank you