Zeile 11 | Zeile 11 |
---|
/** * Xcache Cache Handler */
|
/** * Xcache Cache Handler */
|
class xcacheCacheHandler
| class xcacheCacheHandler implements CacheHandlerInterface
|
{ /** * Unique identifier representing this copy of MyBB
| { /** * Unique identifier representing this copy of MyBB
|
Zeile 20 | Zeile 20 |
---|
*/ public $unique_id;
|
*/ public $unique_id;
|
/** * @param bool $silent ignored */ function xcacheCacheHandler($silent=false)
| function __construct()
|
{ global $mybb;
| { global $mybb;
|
Zeile 56 | Zeile 53 |
---|
* Retrieve an item from the cache. * * @param string $name The name of the cache
|
* Retrieve an item from the cache. * * @param string $name The name of the cache
|
* @param boolean $hard_refresh True if we should do a hard refresh
| |
* @return mixed Cache data if successful, false if failure */
|
* @return mixed Cache data if successful, false if failure */
|
function fetch($name, $hard_refresh=false)
| function fetch($name)
|
{ if(!xcache_isset($this->unique_id."_".$name)) {
| { if(!xcache_isset($this->unique_id."_".$name)) {
|
Zeile 106 | Zeile 102 |
---|
* * @return string */
|
* * @return string */
|
function size_of($name)
| function size_of($name='')
|
{ global $lang;
| { global $lang;
|