leftypol/inc/cache.php

146 lines
3.1 KiB
PHP
Raw Normal View History

2011-10-07 05:51:19 +00:00
<?php
2012-04-10 15:18:38 +00:00
2012-04-11 16:49:22 +00:00
/*
2013-01-20 10:23:46 +00:00
* Copyright (c) 2010-2013 Tinyboard Development Group
2012-04-11 16:49:22 +00:00
*/
2012-04-12 14:18:19 +00:00
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {
2012-04-11 16:49:22 +00:00
// You cannot request this file directly.
exit;
}
2012-04-10 15:18:38 +00:00
class Cache {
private static $cache;
public static function init() {
global $config;
2012-04-12 14:18:19 +00:00
switch ($config['cache']['enabled']) {
2012-04-10 15:18:38 +00:00
case 'memcached':
self::$cache = new Memcached();
self::$cache->addServers($config['cache']['memcached']);
break;
case 'redis':
self::$cache = new Redis();
self::$cache->connect($config['cache']['redis'][0], $config['cache']['redis'][1]);
if ($config['cache']['redis'][2]) {
self::$cache->auth($config['cache']['redis'][2]);
}
self::$cache->select($config['cache']['redis'][3]) or die('cache select failure');
break;
2012-04-10 15:18:38 +00:00
case 'php':
2012-08-27 11:50:15 +00:00
self::$cache = array();
2012-04-10 15:18:38 +00:00
break;
2011-10-07 05:51:19 +00:00
}
2012-04-10 15:18:38 +00:00
}
public static function get($key) {
global $config, $debug;
$key = $config['cache']['prefix'] . $key;
$data = false;
2012-04-12 14:18:19 +00:00
switch ($config['cache']['enabled']) {
2012-04-10 15:18:38 +00:00
case 'memcached':
2012-04-12 14:18:19 +00:00
if (!self::$cache)
2012-04-10 15:18:38 +00:00
self::init();
$data = self::$cache->get($key);
break;
case 'apc':
$data = apc_fetch($key);
break;
case 'xcache':
$data = xcache_get($key);
break;
case 'php':
$data = isset(self::$cache[$key]) ? self::$cache[$key] : false;
break;
case 'redis':
if (!self::$cache)
self::init();
$data = json_decode(self::$cache->get($key), true);
break;
2011-10-07 05:51:19 +00:00
}
2012-04-10 15:18:38 +00:00
// debug
2012-05-20 09:06:27 +00:00
if ($data !== false && $config['debug']) {
2012-04-10 15:18:38 +00:00
$debug['cached'][] = $key;
2011-10-07 05:51:19 +00:00
}
2012-04-10 15:18:38 +00:00
return $data;
}
public static function set($key, $value, $expires = false) {
global $config;
$key = $config['cache']['prefix'] . $key;
2012-04-12 14:18:19 +00:00
if (!$expires)
2012-04-10 15:18:38 +00:00
$expires = $config['cache']['timeout'];
2012-04-12 14:18:19 +00:00
switch ($config['cache']['enabled']) {
2012-04-10 15:18:38 +00:00
case 'memcached':
2012-04-12 14:18:19 +00:00
if (!self::$cache)
2012-04-10 15:18:38 +00:00
self::init();
self::$cache->set($key, $value, $expires);
break;
case 'redis':
if (!self::$cache)
self::init();
self::$cache->setex($key, $expires, json_encode($value));
break;
2012-04-10 15:18:38 +00:00
case 'apc':
apc_store($key, $value, $expires);
break;
case 'xcache':
xcache_set($key, $value, $expires);
break;
case 'php':
self::$cache[$key] = $value;
break;
}
}
public static function delete($key) {
global $config;
$key = $config['cache']['prefix'] . $key;
2012-04-12 14:18:19 +00:00
switch ($config['cache']['enabled']) {
2012-04-10 15:18:38 +00:00
case 'memcached':
case 'redis':
2012-04-12 14:18:19 +00:00
if (!self::$cache)
2012-04-10 15:18:38 +00:00
self::init();
self::$cache->delete($key);
break;
case 'apc':
apc_delete($key);
break;
case 'xcache':
xcache_unset($key);
break;
case 'php':
unset(self::$cache[$key]);
break;
2011-10-07 05:51:19 +00:00
}
2012-04-10 15:18:38 +00:00
}
public static function flush() {
global $config;
2012-04-12 14:18:19 +00:00
switch ($config['cache']['enabled']) {
2012-04-10 15:18:38 +00:00
case 'memcached':
2012-04-12 14:18:19 +00:00
if (!self::$cache)
2012-04-10 15:18:38 +00:00
self::init();
return self::$cache->flush();
case 'apc':
return apc_clear_cache('user');
case 'php':
2012-08-27 11:50:15 +00:00
self::$cache[$key] = array();
2012-04-10 15:18:38 +00:00
break;
case 'redis':
if (!self::$cache)
self::init();
return self::$cache->flushDB();
2011-10-07 05:51:19 +00:00
}
2012-04-10 15:18:38 +00:00
return false;
2011-10-07 05:51:19 +00:00
}
2012-04-10 15:18:38 +00:00
}