2018-05-13 05:38:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Cache;
|
|
|
|
|
|
|
|
use Friendica\Core\Cache;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redis Cache Driver. This driver is based on Memcache driver
|
|
|
|
*
|
|
|
|
* @author Hypolite Petovan <mrpetovan@gmail.com>
|
|
|
|
* @author Roland Haeder <roland@mxchange.org>
|
|
|
|
*/
|
2018-07-05 19:54:20 +00:00
|
|
|
class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver
|
2018-05-13 05:38:53 +00:00
|
|
|
{
|
|
|
|
/**
|
2018-07-05 18:57:31 +00:00
|
|
|
* @var \Redis
|
2018-05-13 05:38:53 +00:00
|
|
|
*/
|
|
|
|
private $redis;
|
|
|
|
|
|
|
|
public function __construct($redis_host, $redis_port)
|
|
|
|
{
|
|
|
|
if (!class_exists('Redis', false)) {
|
|
|
|
throw new \Exception('Redis class isn\'t available');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->redis = new \Redis();
|
|
|
|
|
|
|
|
if (!$this->redis->connect($redis_host, $redis_port)) {
|
|
|
|
throw new \Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get($key)
|
|
|
|
{
|
|
|
|
$return = null;
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
2018-05-13 05:38:53 +00:00
|
|
|
|
|
|
|
// We fetch with the hostname as key to avoid problems with other applications
|
2018-07-05 19:47:52 +00:00
|
|
|
$cached = $this->redis->get($cachekey);
|
2018-05-13 05:38:53 +00:00
|
|
|
|
|
|
|
// @see http://php.net/manual/en/redis.get.php#84275
|
|
|
|
if (is_bool($cached) || is_double($cached) || is_long($cached)) {
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$value = @unserialize($cached);
|
|
|
|
|
|
|
|
// Only return a value if the serialized value is valid.
|
|
|
|
// We also check if the db entry is a serialized
|
|
|
|
// boolean 'false' value (which we want to return).
|
|
|
|
if ($cached === serialize(false) || $value !== false) {
|
|
|
|
$return = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2018-07-04 21:37:22 +00:00
|
|
|
public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
|
2018-05-13 05:38:53 +00:00
|
|
|
{
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
|
2018-05-13 05:38:53 +00:00
|
|
|
// We store with the hostname as key to avoid problems with other applications
|
2018-07-04 21:37:22 +00:00
|
|
|
if ($ttl > 0) {
|
|
|
|
return $this->redis->setex(
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey,
|
2018-07-04 21:37:22 +00:00
|
|
|
time() + $ttl,
|
|
|
|
serialize($value)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return $this->redis->set(
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey,
|
2018-07-04 21:37:22 +00:00
|
|
|
serialize($value)
|
|
|
|
);
|
|
|
|
}
|
2018-05-13 05:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function delete($key)
|
|
|
|
{
|
|
|
|
return $this->redis->delete($key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function clear()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2018-07-04 21:37:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-07-05 05:59:56 +00:00
|
|
|
* (@inheritdoc)
|
2018-07-04 21:37:22 +00:00
|
|
|
*/
|
|
|
|
public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
|
|
|
|
{
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
|
2018-07-04 21:37:22 +00:00
|
|
|
if (!is_int($value)) {
|
|
|
|
$value = serialize($value);
|
|
|
|
}
|
|
|
|
|
2018-07-05 19:47:52 +00:00
|
|
|
return $this->redis->setnx($cachekey, $value);
|
2018-07-04 21:37:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-05 05:59:56 +00:00
|
|
|
* (@inheritdoc)
|
2018-07-04 21:37:22 +00:00
|
|
|
*/
|
|
|
|
public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES)
|
|
|
|
{
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
|
2018-07-04 21:37:22 +00:00
|
|
|
if (!is_int($newValue)) {
|
|
|
|
$newValue = serialize($newValue);
|
|
|
|
}
|
|
|
|
|
2018-07-05 19:47:52 +00:00
|
|
|
$this->redis->watch($cachekey);
|
2018-07-04 21:37:22 +00:00
|
|
|
// If the old value isn't what we expected, somebody else changed the key meanwhile
|
2018-07-05 19:47:52 +00:00
|
|
|
if ($this->get($cachekey) === $oldValue) {
|
2018-07-04 21:37:22 +00:00
|
|
|
if ($ttl > 0) {
|
|
|
|
$result = $this->redis->multi()
|
2018-07-05 19:47:52 +00:00
|
|
|
->setex($cachekey, $ttl, $newValue)
|
2018-07-04 21:37:22 +00:00
|
|
|
->exec();
|
|
|
|
} else {
|
|
|
|
$result = $this->redis->multi()
|
2018-07-05 19:47:52 +00:00
|
|
|
->set($cachekey, $newValue)
|
2018-07-04 21:37:22 +00:00
|
|
|
->exec();
|
|
|
|
}
|
|
|
|
return $result !== false;
|
|
|
|
}
|
|
|
|
$this->redis->unwatch();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/**
|
2018-07-05 05:59:56 +00:00
|
|
|
* (@inheritdoc)
|
2018-07-04 21:37:22 +00:00
|
|
|
*/
|
|
|
|
public function compareDelete($key, $value)
|
|
|
|
{
|
2018-07-05 19:47:52 +00:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
|
|
|
|
$this->redis->watch($cachekey);
|
2018-07-04 21:37:22 +00:00
|
|
|
// If the old value isn't what we expected, somebody else changed the key meanwhile
|
|
|
|
if ($this->get($key) === $value) {
|
|
|
|
$result = $this->redis->multi()
|
2018-07-05 19:47:52 +00:00
|
|
|
->del($cachekey)
|
2018-07-04 21:37:22 +00:00
|
|
|
->exec();
|
|
|
|
return $result !== false;
|
|
|
|
}
|
|
|
|
$this->redis->unwatch();
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-13 05:38:53 +00:00
|
|
|
}
|