mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
154 lines
3.4 KiB
PHP
154 lines
3.4 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
/**
|
|
* Cache class for APC
|
|
*
|
|
* @author NAVER (developer@xpressengine.com)
|
|
* */
|
|
class CacheApc extends CacheBase
|
|
{
|
|
public static $isSupport = false;
|
|
|
|
/**
|
|
* Get instance of CacheApc
|
|
*
|
|
* @param void $opt Not used
|
|
* @return CacheApc instance of CacheApc
|
|
*/
|
|
function getInstance($opt = null)
|
|
{
|
|
if(!$GLOBALS['__CacheApc__'])
|
|
{
|
|
$GLOBALS['__CacheApc__'] = new CacheApc();
|
|
}
|
|
return $GLOBALS['__CacheApc__'];
|
|
}
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @return void
|
|
*/
|
|
function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Return whether support or not support cache
|
|
*
|
|
* @return bool Return true on support or false on not support
|
|
*/
|
|
function isSupport()
|
|
{
|
|
return self::$isSupport;
|
|
}
|
|
|
|
/**
|
|
* Cache a variable in the data store
|
|
*
|
|
* @param string $key Store the variable using this name. $key are cache-unique, so storing a second value with the same $key will overwrite the original value.
|
|
* @param mixed $buff The variable to store
|
|
* @param int $valid_time Time To Live; store $buff in the cache for ttl seconds.
|
|
* After the ttl has passed., the stored variable will be expunged from the cache (on the next request).
|
|
* If no ttl is supplied, use the default valid time CacheApc::valid_time.
|
|
* @return bool Returns true on success or false on failure.
|
|
*/
|
|
function put($key, $buff, $valid_time = 0)
|
|
{
|
|
if($valid_time == 0)
|
|
{
|
|
$valid_time = $this->valid_time;
|
|
}
|
|
|
|
return apc_store(md5(_XE_PATH_ . $key), array($_SERVER['REQUEST_TIME'], $buff), $valid_time);
|
|
}
|
|
|
|
/**
|
|
* Return whether cache is valid or invalid
|
|
*
|
|
* @param string $key Cache key
|
|
* @param int $modified_time Unix time of data modified.
|
|
* If stored time is older then modified time, the data is invalid.
|
|
* @return bool Return true on valid or false on invalid.
|
|
*/
|
|
function isValid($key, $modified_time = 0)
|
|
{
|
|
$_key = md5(_XE_PATH_ . $key);
|
|
$obj = apc_fetch($_key, $success);
|
|
if(!$success || !is_array($obj))
|
|
{
|
|
return false;
|
|
}
|
|
unset($obj[1]);
|
|
|
|
if($modified_time > 0 && $modified_time > $obj[0])
|
|
{
|
|
$this->delete($key);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Fetch a stored variable from the cache
|
|
*
|
|
* @param string $key The $key used to store the value.
|
|
* @param int $modified_time Unix time of data modified.
|
|
* If stored time is older then modified time, return false.
|
|
* @return false|mixed Return false on failure or older then modified time. Return the string associated with the $key on success.
|
|
*/
|
|
function get($key, $modified_time = 0)
|
|
{
|
|
$_key = md5(_XE_PATH_ . $key);
|
|
$obj = apc_fetch($_key, $success);
|
|
if(!$success || !is_array($obj))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if($modified_time > 0 && $modified_time > $obj[0])
|
|
{
|
|
$this->delete($key);
|
|
return false;
|
|
}
|
|
|
|
return $obj[1];
|
|
}
|
|
|
|
/**
|
|
* Delete variable from the cache
|
|
*
|
|
* @param string $key Used to store the value.
|
|
* @return void
|
|
*/
|
|
function delete($key)
|
|
{
|
|
$_key = md5(_XE_PATH_ . $key);
|
|
return apc_delete($_key);
|
|
}
|
|
|
|
/**
|
|
* Truncate all existing variables at the cache
|
|
*
|
|
* @return bool Returns true on success or false on failure.
|
|
*/
|
|
function truncate()
|
|
{
|
|
return apc_clear_cache('user');
|
|
}
|
|
|
|
/**
|
|
* @DEPRECATED
|
|
*/
|
|
function _delete($key)
|
|
{
|
|
return $this->delete($key);
|
|
}
|
|
}
|
|
|
|
CacheApc::$isSupport = function_exists('apc_add');
|
|
|
|
/* End of file CacheApc.class.php */
|
|
/* Location: ./classes/cache/CacheApc.class.php */
|