APC cache driver
This commit is contained in:
parent
8a4db9ff2d
commit
b031fdf43d
|
@ -0,0 +1,80 @@
|
||||||
|
<?php namespace System\Cache\Driver;
|
||||||
|
|
||||||
|
class APC implements \System\Cache\Driver {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* All of the loaded cache items.
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
private $items = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if an item exists in the cache.
|
||||||
|
*
|
||||||
|
* @param string $key
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function has($key)
|
||||||
|
{
|
||||||
|
return ( ! is_null($this->get($key)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get an item from the cache.
|
||||||
|
*
|
||||||
|
* @param string $key
|
||||||
|
* @param mixed $default
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function get($key, $default = null)
|
||||||
|
{
|
||||||
|
// --------------------------------------------------
|
||||||
|
// If the item has already been loaded, return it.
|
||||||
|
// --------------------------------------------------
|
||||||
|
if (array_key_exists($key, $this->items))
|
||||||
|
{
|
||||||
|
return $this->items[$key];
|
||||||
|
}
|
||||||
|
|
||||||
|
// --------------------------------------------------
|
||||||
|
// Attempt to the get the item from cache.
|
||||||
|
// --------------------------------------------------
|
||||||
|
$cache = apc_fetch($key);
|
||||||
|
|
||||||
|
// --------------------------------------------------
|
||||||
|
// Verify that the item was retrieved.
|
||||||
|
// --------------------------------------------------
|
||||||
|
if ($cache === false)
|
||||||
|
{
|
||||||
|
return $default;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->items[$key] = $cache;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write an item to the cache.
|
||||||
|
*
|
||||||
|
* @param string $key
|
||||||
|
* @param mixed $value
|
||||||
|
* @param int $minutes
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function put($key, $value, $minutes)
|
||||||
|
{
|
||||||
|
apc_store($key, $value, $minutes * 60);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete an item from the cache.
|
||||||
|
*
|
||||||
|
* @param string $key
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function forget($key)
|
||||||
|
{
|
||||||
|
apc_delete($key);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -18,6 +18,9 @@ public static function make($driver)
|
||||||
case 'memcached':
|
case 'memcached':
|
||||||
return new Driver\Memcached;
|
return new Driver\Memcached;
|
||||||
|
|
||||||
|
case 'apc':
|
||||||
|
return new Driver\APC;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new \Exception("Cache driver [$driver] is not supported.");
|
throw new \Exception("Cache driver [$driver] is not supported.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue