Cache\Backend\Apc
Class Phalcon\Cache\Backend\Apc
extends abstract class Phalcon\Cache\Backend
implements Phalcon\Cache\BackendInterface
Allows to cache output fragments, PHP data and raw data using an APC backend
use Phalcon\Cache\Backend\Apc; use Phalcon\Cache\Frontend\Data as FrontData; // Cache data for 2 days $frontCache = new FrontData( [ "lifetime" => 172800, ] ); $cache = new Apc( $frontCache, [ "prefix" => "app-data", ] ); // Cache arbitra