]> git.mxchange.org Git - friendica.git/blob - src/Core/Cache/RedisCacheDriver.php
bug in redis delete function
[friendica.git] / src / Core / Cache / RedisCacheDriver.php
1 <?php
2
3 namespace Friendica\Core\Cache;
4
5 use Friendica\Core\Cache;
6
7 /**
8  * Redis Cache Driver. This driver is based on Memcache driver
9  *
10  * @author Hypolite Petovan <mrpetovan@gmail.com>
11  * @author Roland Haeder <roland@mxchange.org>
12  */
13 class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver
14 {
15         /**
16          * @var \Redis
17          */
18         private $redis;
19
20         public function __construct($redis_host, $redis_port)
21         {
22                 if (!class_exists('Redis', false)) {
23                         throw new \Exception('Redis class isn\'t available');
24                 }
25
26                 $this->redis = new \Redis();
27
28                 if (!$this->redis->connect($redis_host, $redis_port)) {
29                         throw new \Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
30                 }
31         }
32
33         public function get($key)
34         {
35                 $return = null;
36                 $cachekey = $this->getCacheKey($key);
37
38                 $cached = $this->redis->get($cachekey);
39                 if ($cached === false && !$this->redis->exists($cachekey)) {
40                         return null;
41                 }
42
43                 $value = json_decode($cached);
44
45                 // Only return a value if the serialized value is valid.
46                 // We also check if the db entry is a serialized
47                 // boolean 'false' value (which we want to return).
48                 if ($cached === serialize(false) || $value !== false) {
49                         $return = $value;
50                 }
51
52                 return $return;
53         }
54
55         public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
56         {
57                 $cachekey = $this->getCacheKey($key);
58
59                 $cached = json_encode($value);
60
61                 if ($ttl > 0) {
62                         return $this->redis->setex(
63                                 $cachekey,
64                                 time() + $ttl,
65                                 $cached
66                         );
67                 } else {
68                         return $this->redis->set(
69                                 $cachekey,
70                                 $cached
71                         );
72                 }
73         }
74
75         public function delete($key)
76         {
77                 $cachekey = $this->getCacheKey($key);
78                 return ($this->redis->delete($cachekey) > 0);
79         }
80
81         public function clear()
82         {
83                 return $this->redis->flushAll();
84         }
85
86
87         /**
88          * (@inheritdoc)
89          */
90         public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
91         {
92                 $cachekey = $this->getCacheKey($key);
93                 $cached = json_encode($value);
94
95                 return $this->redis->setnx($cachekey, $value);
96         }
97
98         /**
99          * (@inheritdoc)
100          */
101         public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES)
102         {
103                 $cachekey = $this->getCacheKey($key);
104
105                 $newCached = json_encode($newValue);
106
107                 $this->redis->watch($cachekey);
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($cachekey, $ttl, $newCached)
113                                         ->exec();
114                         } else {
115                                 $result = $this->redis->multi()
116                                         ->set($cachekey, $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                 $cachekey = $this->getCacheKey($key);
130
131                 $this->redis->watch($cachekey);
132                 // If the old value isn't what we expected, somebody else changed the key meanwhile
133                 if ($this->get($key) === $value) {
134                         $result = $this->redis->multi()
135                                 ->del($cachekey)
136                                 ->exec();
137                         return $result !== false;
138                 }
139                 $this->redis->unwatch();
140                 return false;
141         }
142 }