Created
August 15, 2012 11:31
-
-
Save rbraband/3359379 to your computer and use it in GitHub Desktop.
Redis Wrapper for https://github.com/nicolasff/phpredis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// constants | |
define('WITHSCORES', true); | |
define('REDIS_CONNECTION', ((CLI) ? '/var/run/redis.socket' : '127.0.0.1')); // localhost or socket | |
#define('REDIS_CONNECTION', '127.0.0.1'); // localhost only | |
define('REDIS_NAMESPACE', 'lou:'); // use custom prefix on all keys | |
define('REDIS_DB', 1); | |
#define('REDIS_AUTH', ''); | |
define('REDIS_LOG_FILE', ((CLI) ? $_SERVER['PWD'] : $_SERVER['DOCUMENT_ROOT']).'/logs/redis.txt'); | |
// wrapper class | |
class RedisWrapper { | |
// Singleton instance | |
private static $instance; | |
// Redis instance | |
private $redis; | |
// Redis connect status | |
private $connect; | |
// Redis PID | |
private $pid; | |
// private constructor function | |
// to prevent external instantiation | |
private function __construct($pid = 0) { | |
if (class_exists('Redis')) { | |
try { | |
$this->redis = new Redis(); // needs https://github.com/nicolasff/phpredis | |
$this->connect = $this->redis->connect(REDIS_CONNECTION); | |
if (defined('REDIS_AUTH')) $redis->auth(REDIS_AUTH); | |
$this->select(REDIS_DB); | |
$this->redis->setOption(Redis::OPT_PREFIX, REDIS_NAMESPACE); | |
$this->pid = $pid; | |
} catch (RedisException $e){ | |
$line = trim(date("[d/m @ H:i:s]") . "Redis connect Error: " . $e->getMessage()) . "\n"; | |
error_log($line, 3, REDIS_LOG_FILE); | |
return false; | |
} | |
} | |
} | |
// destructor function | |
function __destruct() { | |
unset($this->redis); | |
$this->connect = false; | |
$this->pid = null; | |
} | |
// getInstance method | |
public static function getInstance($prozessor = null) { | |
if(is_null($prozessor)) $prozessor = posix_getpid(); | |
if(!self::$instance[$prozessor]) { | |
self::$instance[$prozessor] = new self($prozessor); | |
} | |
return self::$instance[$prozessor]; | |
} | |
// reInstance method | |
public function reInstance($prozessor = null) { | |
if(is_null($prozessor)) $prozessor = posix_getpid(); | |
$this->__construct($prozessor); | |
} | |
// testPid method | |
public static function testPid($prozessor = null) { | |
if(is_null($prozessor)) $prozessor = posix_getpid(); | |
if(!self::$instance[$prozessor]) { | |
return false; | |
} | |
return (self::$instance[$prozessor]->pid == $prozessor) ? $prozessor : false; | |
} | |
//... | |
// Call a dynamically wrapper... | |
public function __call($method, $args) { | |
if(method_exists($this->redis, $method)) { | |
try { | |
return call_user_func_array(array($this->redis, $method), $args); | |
} catch (RedisException $e){ | |
$line = trim(date("[d/m @ H:i:s]") . "Redis command ('{$method}') Error: " . $e->getMessage()) . "\n"; | |
error_log($line, 3, REDIS_LOG_FILE); | |
return false; | |
} | |
} else { | |
return false; | |
} | |
} | |
// Return an error | |
public function status() { | |
return ($this->connect && $this->PING() == '+PONG') ? true : false; | |
} | |
// Overwrite redis->getKeys | |
public function getKeys($pattern) { | |
$keys = $this->redis->keys($pattern); | |
foreach($keys as $_k => $_v) if (strpos($_v, REDIS_NAMESPACE) === 0 ) $keys[$_k] = substr($_v, strlen(REDIS_NAMESPACE)); | |
return $keys; | |
} | |
// Key without REDIS_NAMESPACE and PATTERN | |
public function clearKey($keys, $pattern = '//', $limit = -1) { | |
if (!is_array($keys)) { | |
$force_array = true; | |
$keys = array($keys); | |
} else $force_array = false; | |
if (!is_array($pattern)) $pattern = array($pattern); | |
foreach($keys as $_k => $_v) if (strpos($_v, REDIS_NAMESPACE) === 0 ) $keys[$_k] = substr($_v, strlen(REDIS_NAMESPACE)); | |
$_keys = preg_replace($pattern, '', $keys, $limit); | |
if(count($_keys) == 1 && $force_array) return $_keys[0]; | |
else return $_keys; | |
} | |
} | |
// get instance of redis db | |
$redis = RedisWrapper::getInstance(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment