Bluz\Cache\Adapter\Apc::doSet PHP Method

doSet() protected method

protected doSet ( string $id, mixed $data, integer $ttl = Cache::TTL_NO_EXPIRY ) : boolean
$id string
$data mixed
$ttl integer
return boolean
    protected function doSet($id, $data, $ttl = Cache::TTL_NO_EXPIRY)
    {
        return apc_store($id, $data, $ttl);
    }