Files
nl-admin-api/system/cache/driver/memcached.php

53 lines
1016 B
PHP
Raw Normal View History

2011-06-08 23:45:08 -05:00
<?php namespace System\Cache\Driver;
use System\Config;
2011-06-08 23:45:08 -05:00
class Memcached implements \System\Cache\Driver {
2011-06-08 23:45:08 -05:00
/**
* 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
* @return mixed
*/
public function get($key)
2011-06-08 23:45:08 -05:00
{
return (($cache = \System\Memcached::instance()->get(Config::get('cache.key').$key)) !== false) ? $cache : null;
2011-06-08 23:45:08 -05:00
}
/**
* Write an item to the cache.
*
* @param string $key
* @param mixed $value
* @param int $minutes
* @return void
*/
public function put($key, $value, $minutes)
{
\System\Memcached::instance()->set(Config::get('cache.key').$key, $value, 0, $minutes * 60);
2011-06-08 23:45:08 -05:00
}
/**
* Delete an item from the cache.
*
* @param string $key
* @return void
*/
public function forget($key)
{
\System\Memcached::instance()->delete(Config::get('cache.key').$key);
2011-06-08 23:45:08 -05:00
}
}