CacheEngine_APC::isSupported PHP Method

isSupported() public method

Returns true if the engine was supported in PHP, false otherwise.
public isSupported ( ) : boolean
return boolean
    public function isSupported()
    {
        return ini_get('apc.enabled') && function_exists('apc_store');
    }