leftypol/inc/cache.php

174 lines
3.8 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
*/
defined('TINYBOARD') or exit;
2012-04-11 16:49:22 +00:00
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;
2015-04-05 15:13:55 +00:00
case 'fs':
$key = str_replace('/', '::', $key);
$key = str_replace("\0", '', $key);
if (!file_exists('tmp/cache/'.$key)) {
$data = false;
}
else {
$data = file_get_contents('tmp/cache/'.$key);
$data = json_decode($data, true);
}
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
if ($config['debug'])
$debug['cached'][] = $key . ($data === false ? ' (miss)' : ' (hit)');
2012-04-10 15:18:38 +00:00
return $data;
}
public static function set($key, $value, $expires = false) {
global $config, $debug;
2012-04-10 15:18:38 +00:00
$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;
2015-04-05 15:13:55 +00:00
case 'fs':
$key = str_replace('/', '::', $key);
$key = str_replace("\0", '', $key);
file_put_contents('tmp/cache/'.$key, json_encode($value));
break;
2012-04-10 15:18:38 +00:00
case 'php':
self::$cache[$key] = $value;
break;
}
if ($config['debug'])
$debug['cached'][] = $key . ' (set)';
2012-04-10 15:18:38 +00:00
}
public static function delete($key) {
global $config, $debug;
2012-04-10 15:18:38 +00:00
$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;
2015-04-05 15:13:55 +00:00
case 'fs':
$key = str_replace('/', '::', $key);
$key = str_replace("\0", '', $key);
2015-04-06 20:51:02 +00:00
@unlink('tmp/cache/'.$key);
2015-04-05 15:13:55 +00:00
break;
2012-04-10 15:18:38 +00:00
case 'php':
unset(self::$cache[$key]);
break;
2011-10-07 05:51:19 +00:00
}
if ($config['debug'])
$debug['cached'][] = $key . ' (deleted)';
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':
2013-09-06 17:09:52 +00:00
self::$cache = array();
2012-04-10 15:18:38 +00:00
break;
2015-04-05 15:13:55 +00:00
case 'fs':
$files = glob('tmp/cache/*');
foreach ($files as $file) {
unlink($file);
}
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
}