blob: 20378785aa19334637c21d818b7c7d86cfeaf4a7 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Anton Lindqvist1e8be292012-01-21 12:25:08 +01002/**
3 * CodeIgniter
4 *
Anton Lindqvist5ccf5ce2012-06-08 11:47:17 +02005 * An open source application development framework for PHP 5.2.4 or newer
Anton Lindqvist1e8be292012-01-21 12:25:08 +01006 *
Anton Lindqvist5a1d9532012-01-23 23:20:26 +01007 * NOTICE OF LICENSE
8 *
9 * Licensed under the Open Software License version 3.0
10 *
11 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010021 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Anton Lindqvist5a1d9532012-01-23 23:20:26 +010022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
23 * @link http://codeigniter.com
Andrey Andreev9e674f72012-06-09 21:02:52 +030024 * @since Version 3.0
Anton Lindqvist1e8be292012-01-21 12:25:08 +010025 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Anton Lindqvist1e8be292012-01-21 12:25:08 +010028
Anton Lindqvist1e8be292012-01-21 12:25:08 +010029/**
30 * CodeIgniter Redis Caching Class
31 *
32 * @package CodeIgniter
33 * @subpackage Libraries
34 * @category Core
35 * @author Anton Lindqvist <anton@qvister.se>
36 * @link
37 */
38class CI_Cache_redis extends CI_Driver
39{
Anton Lindqvist1e8be292012-01-21 12:25:08 +010040 /**
41 * Default config
42 *
Anton Lindqvist1e8be292012-01-21 12:25:08 +010043 * @static
Andrey Andreev9e674f72012-06-09 21:02:52 +030044 * @var array
Anton Lindqvist1e8be292012-01-21 12:25:08 +010045 */
Anton Lindqvist3573af82012-01-21 20:33:12 +010046 protected static $_default_config = array(
Kakysha80d663a2013-10-28 01:39:17 +040047 'socket_type' => 'tcp',
Anton Lindqvist1e8be292012-01-21 12:25:08 +010048 'host' => '127.0.0.1',
Anton Lindqvist5ccf5ce2012-06-08 11:47:17 +020049 'password' => NULL,
Anton Lindqvist1e8be292012-01-21 12:25:08 +010050 'port' => 6379,
51 'timeout' => 0
52 );
53
54 /**
55 * Redis connection
56 *
Andrey Andreev9e674f72012-06-09 21:02:52 +030057 * @var Redis
Anton Lindqvist1e8be292012-01-21 12:25:08 +010058 */
Anton Lindqvist3573af82012-01-21 20:33:12 +010059 protected $_redis;
Anton Lindqvist1e8be292012-01-21 12:25:08 +010060
Ivan Tcholakov927e5082014-08-14 04:07:39 +030061 /**
62 * An internal cache for storing keys of serialized values.
63 *
64 * @var array
65 */
66 protected $_serialized;
67
Andrey Andreev9e674f72012-06-09 21:02:52 +030068 // ------------------------------------------------------------------------
Anton Lindqvist1e8be292012-01-21 12:25:08 +010069
70 /**
71 * Get cache
72 *
Andrey Andreev43d7fa72014-01-09 17:29:45 +020073 * @param string Cache ID
Andrey Andreev9e674f72012-06-09 21:02:52 +030074 * @return mixed
Anton Lindqvist1e8be292012-01-21 12:25:08 +010075 */
76 public function get($key)
77 {
Ivan Tcholakov927e5082014-08-14 04:07:39 +030078 $value = $this->_redis->get($key);
79
Ivan Tcholakove838c832014-08-18 09:56:05 +030080 if ($value !== FALSE && in_array($key, $this->_serialized, TRUE))
Ivan Tcholakov927e5082014-08-14 04:07:39 +030081 {
82 return unserialize($value);
83 }
84
85 return $value;
Anton Lindqvist1e8be292012-01-21 12:25:08 +010086 }
87
Andrey Andreev9e674f72012-06-09 21:02:52 +030088 // ------------------------------------------------------------------------
89
Anton Lindqvist1e8be292012-01-21 12:25:08 +010090 /**
91 * Save cache
92 *
Andrey Andreev43d7fa72014-01-09 17:29:45 +020093 * @param string $id Cache ID
94 * @param mixed $data Data to save
95 * @param int $ttl Time to live in seconds
96 * @param bool $raw Whether to store the raw value (unused)
97 * @return bool TRUE on success, FALSE on failure
Anton Lindqvist1e8be292012-01-21 12:25:08 +010098 */
Andrey Andreev43d7fa72014-01-09 17:29:45 +020099 public function save($id, $data, $ttl = 60, $raw = FALSE)
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100100 {
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300101 if (is_array($data) OR is_object($data))
102 {
103 $data = serialize($data);
104
Ivan Tcholakovc773a482014-08-18 10:02:49 +0300105 if (($index_key = array_search($id, $this->_serialized, TRUE)) === FALSE)
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300106 {
107 $this->_serialized[] = $id;
108 }
109
Ivan Tcholakov7c835572014-08-18 10:37:29 +0300110 $this->_redis->sAdd('_ci_redis_serialized', $id);
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300111 }
112 else
113 {
Ivan Tcholakovc773a482014-08-18 10:02:49 +0300114 if (($index_key = array_search($id, $this->_serialized, TRUE)) !== FALSE)
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300115 {
116 unset($this->_serialized[$index_key]);
117 }
118
Ivan Tcholakov7c835572014-08-18 10:37:29 +0300119 $this->_redis->sRemove('_ci_redis_serialized', $id);
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300120 }
121
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100122 return ($ttl)
Andrey Andreev43d7fa72014-01-09 17:29:45 +0200123 ? $this->_redis->setex($id, $ttl, $data)
124 : $this->_redis->set($id, $data);
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100125 }
126
Andrey Andreev9e674f72012-06-09 21:02:52 +0300127 // ------------------------------------------------------------------------
128
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100129 /**
130 * Delete from cache
131 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300132 * @param string Cache key
133 * @return bool
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100134 */
135 public function delete($key)
136 {
Ivan Tcholakovbc417612014-08-18 11:11:39 +0300137 // This is for not leaving garbage keys within the Redis auxilary set.
138 $this->_redis->sRemove('_ci_redis_serialized', $key);
139
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100140 return ($this->_redis->delete($key) === 1);
141 }
142
Andrey Andreev9e674f72012-06-09 21:02:52 +0300143 // ------------------------------------------------------------------------
144
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100145 /**
Andrey Andreev43d7fa72014-01-09 17:29:45 +0200146 * Increment a raw value
147 *
148 * @param string $id Cache ID
149 * @param int $offset Step/value to add
150 * @return mixed New value on success or FALSE on failure
151 */
152 public function increment($id, $offset = 1)
153 {
Andrey Andreev5f0799a2014-07-31 13:32:41 +0300154 return $this->_redis->incr($id, $offset);
Andrey Andreev43d7fa72014-01-09 17:29:45 +0200155 }
156
157 // ------------------------------------------------------------------------
158
159 /**
160 * Decrement a raw value
161 *
162 * @param string $id Cache ID
163 * @param int $offset Step/value to reduce by
164 * @return mixed New value on success or FALSE on failure
165 */
166 public function decrement($id, $offset = 1)
167 {
Andrey Andreev5f0799a2014-07-31 13:32:41 +0300168 return $this->_redis->decr($id, $offset);
Andrey Andreev43d7fa72014-01-09 17:29:45 +0200169 }
170
171 // ------------------------------------------------------------------------
172
173 /**
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100174 * Clean cache
175 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300176 * @return bool
177 * @see Redis::flushDB()
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100178 */
179 public function clean()
180 {
181 return $this->_redis->flushDB();
182 }
183
Andrey Andreev9e674f72012-06-09 21:02:52 +0300184 // ------------------------------------------------------------------------
185
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100186 /**
187 * Get cache driver info
188 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300189 * @param string Not supported in Redis.
190 * Only included in order to offer a
191 * consistent cache API.
192 * @return array
193 * @see Redis::info()
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100194 */
195 public function cache_info($type = NULL)
196 {
197 return $this->_redis->info();
198 }
199
Andrey Andreev9e674f72012-06-09 21:02:52 +0300200 // ------------------------------------------------------------------------
201
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100202 /**
203 * Get cache metadata
204 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300205 * @param string Cache key
206 * @return array
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100207 */
208 public function get_metadata($key)
209 {
210 $value = $this->get($key);
211
212 if ($value)
Andrey Andreev9e674f72012-06-09 21:02:52 +0300213 {
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100214 return array(
215 'expire' => time() + $this->_redis->ttl($key),
216 'data' => $value
217 );
218 }
Andrey Andreev9e674f72012-06-09 21:02:52 +0300219
220 return FALSE;
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100221 }
222
Andrey Andreev9e674f72012-06-09 21:02:52 +0300223 // ------------------------------------------------------------------------
224
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100225 /**
226 * Check if Redis driver is supported
227 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300228 * @return bool
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100229 */
230 public function is_supported()
231 {
232 if (extension_loaded('redis'))
Andrey Andreev9e674f72012-06-09 21:02:52 +0300233 {
Kakysha2d146732013-10-28 20:20:24 +0400234 return $this->_setup_redis();
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100235 }
236 else
237 {
Tyler Brownelld967f722013-07-29 19:06:52 -0400238 log_message('debug', 'The Redis extension must be loaded to use Redis cache.');
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100239 return FALSE;
240 }
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100241 }
242
Andrey Andreev9e674f72012-06-09 21:02:52 +0300243 // ------------------------------------------------------------------------
244
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100245 /**
246 * Setup Redis config and connection
247 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300248 * Loads Redis config file if present. Will halt execution
249 * if a Redis connection can't be established.
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100250 *
Andrey Andreev9e674f72012-06-09 21:02:52 +0300251 * @return bool
252 * @see Redis::connect()
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100253 */
Anton Lindqvist5ccf5ce2012-06-08 11:47:17 +0200254 protected function _setup_redis()
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100255 {
256 $config = array();
257 $CI =& get_instance();
258
259 if ($CI->config->load('redis', TRUE, TRUE))
Anton Lindqvist5ccf5ce2012-06-08 11:47:17 +0200260 {
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100261 $config += $CI->config->item('redis');
262 }
263
264 $config = array_merge(self::$_default_config, $config);
265
266 $this->_redis = new Redis();
267
268 try
269 {
Kakysha80d663a2013-10-28 01:39:17 +0400270 if ($config['socket_type'] === 'unix')
271 {
Kakyshaffe21302013-10-28 21:30:05 +0400272 $success = $this->_redis->connect($config['socket']);
Kakysha8f3f1f92013-10-28 23:14:08 +0400273 }
274 else // tcp socket
Kakysha80d663a2013-10-28 01:39:17 +0400275 {
Kakyshaffe21302013-10-28 21:30:05 +0400276 $success = $this->_redis->connect($config['host'], $config['port'], $config['timeout']);
Kakysha2d146732013-10-28 20:20:24 +0400277 }
Andrey Andreev119d8a72014-01-08 15:27:53 +0200278
Kakyshaffe21302013-10-28 21:30:05 +0400279 if ( ! $success)
Kakysha2d146732013-10-28 20:20:24 +0400280 {
Kakysha333b69b2013-10-29 03:49:56 +0400281 log_message('debug', 'Cache: Redis connection refused. Check the config.');
Kakysha2d146732013-10-28 20:20:24 +0400282 return FALSE;
Kakysha80d663a2013-10-28 01:39:17 +0400283 }
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100284 }
285 catch (RedisException $e)
286 {
Kakysha333b69b2013-10-29 03:49:56 +0400287 log_message('debug', 'Cache: Redis connection refused ('.$e->getMessage().')');
Kakysha2d146732013-10-28 20:20:24 +0400288 return FALSE;
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100289 }
Anton Lindqvist210e6642012-04-23 10:13:46 +0200290
Anton Lindqvist5ccf5ce2012-06-08 11:47:17 +0200291 if (isset($config['password']))
292 {
Anton Lindqvist210e6642012-04-23 10:13:46 +0200293 $this->_redis->auth($config['password']);
294 }
Andrey Andreev119d8a72014-01-08 15:27:53 +0200295
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300296 // Initialize the index of selialized values.
Ivan Tcholakov7c835572014-08-18 10:37:29 +0300297 $this->_serialized = $this->_redis->sMembers('_ci_redis_serialized');
Ivan Tcholakov927e5082014-08-14 04:07:39 +0300298
299 if (empty($this->_serialized))
300 {
301 // On error FALSE is returned, ensure array type for empty index.
302 $this->_serialized = array();
303 }
304
Kakysha2d146732013-10-28 20:20:24 +0400305 return TRUE;
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100306 }
307
Andrey Andreev9e674f72012-06-09 21:02:52 +0300308 // ------------------------------------------------------------------------
309
310 /**
Andrey Andreev9e674f72012-06-09 21:02:52 +0300311 * Class destructor
312 *
313 * Closes the connection to Redis if present.
314 *
315 * @return void
316 */
317 public function __destruct()
318 {
319 if ($this->_redis)
320 {
321 $this->_redis->close();
322 }
323 }
324
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100325}
Anton Lindqvist1e8be292012-01-21 12:25:08 +0100326
327/* End of file Cache_redis.php */
328/* Location: ./system/libraries/Cache/drivers/Cache_redis.php */