]> git.mxchange.org Git - friendica.git/blob - src/Core/Cache/RedisCacheDriver.php
code standards / simplifications
[friendica.git] / src / Core / Cache / RedisCacheDriver.php
1 <?php
2
3 namespace Friendica\Core\Cache;
4
5 use Friendica\BaseObject;
6 use Friendica\Core\Cache;
7
8 /**
9  * Redis Cache Driver. This driver is based on Memcache driver
10  *
11  * @author Hypolite Petovan <mrpetovan@gmail.com>
12  * @author Roland Haeder <roland@mxchange.org>
13  */
14 class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
15 {
16         /**
17          * @var Redis
18          */
19         private $redis;
20
21         public function __construct($redis_host, $redis_port)
22         {
23                 if (!class_exists('Redis', false)) {
24                         throw new \Exception('Redis class isn\'t available');
25                 }
26
27                 $this->redis = new \Redis();
28
29                 if (!$this->redis->connect($redis_host, $redis_port)) {
30                         throw new \Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
31                 }
32         }
33
34         public function get($key)
35         {
36                 $return = null;
37
38                 // We fetch with the hostname as key to avoid problems with other applications
39                 $cached = $this->redis->get(self::getApp()->get_hostname() . ':' . $key);
40
41                 // @see http://php.net/manual/en/redis.get.php#84275
42                 if (is_bool($cached) || is_double($cached) || is_long($cached)) {
43                         return $return;
44                 }
45
46                 $value = @unserialize($cached);
47
48                 // Only return a value if the serialized value is valid.
49                 // We also check if the db entry is a serialized
50                 // boolean 'false' value (which we want to return).
51                 if ($cached === serialize(false) || $value !== false) {
52                         $return = $value;
53                 }
54
55                 return $return;
56         }
57
58         public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
59         {
60                 // We store with the hostname as key to avoid problems with other applications
61                 if ($ttl > 0) {
62                         return $this->redis->setex(
63                                 self::getApp()->get_hostname() . ":" . $key,
64                                 time() + $ttl,
65                                 serialize($value)
66                         );
67                 } else {
68                         return $this->redis->set(
69                                 self::getApp()->get_hostname() . ":" . $key,
70                                 serialize($value)
71                         );
72                 }
73         }
74
75         public function delete($key)
76         {
77                 return $this->redis->delete($key);
78         }
79
80         public function clear()
81         {
82                 return true;
83         }
84
85
86         /**
87          * (@inheritdoc)
88          */
89         public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
90         {
91                 if (!is_int($value)) {
92                         $value = serialize($value);
93                 }
94
95                 return $this->redis->setnx(self::getApp()->get_hostname() . ":" . $key, $value);
96         }
97
98         /**
99          * (@inheritdoc)
100          */
101         public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES)
102         {
103                 if (!is_int($newValue)) {
104                         $newValue = serialize($newValue);
105                 }
106
107                 $this->redis->watch(self::getApp()->get_hostname() . ":" . $key);
108                 // If the old value isn't what we expected, somebody else changed the key meanwhile
109                 if ($this->get($key) === $oldValue) {
110                         if ($ttl > 0) {
111                                 $result = $this->redis->multi()
112                                         ->setex(self::getApp()->get_hostname() . ":" . $ttl, $key, $newValue)
113                                         ->exec();
114                         } else {
115                                 $result = $this->redis->multi()
116                                         ->set(self::getApp()->get_hostname() . ":" . $key, $newValue)
117                                         ->exec();
118                         }
119                         return $result !== false;
120                 }
121                 $this->redis->unwatch();
122                 return false;
123         }
124         /**
125          * (@inheritdoc)
126          */
127         public function compareDelete($key, $value)
128         {
129                 $this->redis->watch(self::getApp()->get_hostname() . ":" . $key);
130                 // If the old value isn't what we expected, somebody else changed the key meanwhile
131                 if ($this->get($key) === $value) {
132                         $result = $this->redis->multi()
133                                 ->del(self::getApp()->get_hostname() . ":" . $key)
134                                 ->exec();
135                         return $result !== false;
136                 }
137                 $this->redis->unwatch();
138                 return false;
139         }
140 }