Redis.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\cache\driver;
  12. use think\cache\Driver;
  13. /**
  14. * Redis缓存驱动,适合单机部署、有前端代理实现高可用的场景,性能最好
  15. * 有需要在业务层实现读写分离、或者使用RedisCluster的需求,请使用Redisd驱动
  16. *
  17. * 要求安装phpredis扩展:https://github.com/nicolasff/phpredis
  18. * @author 尘缘 <130775@qq.com>
  19. */
  20. class Redis extends Driver
  21. {
  22. protected $options = [
  23. 'host' => '8.136.12.232',
  24. 'port' => 6379,
  25. 'password' => 'xiang123456',
  26. 'select' => 0,
  27. 'timeout' => 0,
  28. 'expire' => 0,
  29. 'persistent' => false,
  30. 'prefix' => '',
  31. 'serialize' => true,
  32. ];
  33. /**
  34. * 架构函数
  35. * @access public
  36. * @param array $options 缓存参数
  37. */
  38. public function __construct($options = [])
  39. {
  40. if (!empty($options)) {
  41. $this->options = array_merge($this->options, $options);
  42. }
  43. if (extension_loaded('redis')) {
  44. $this->handler = new \Redis;
  45. if ($this->options['persistent']) {
  46. $this->handler->pconnect($this->options['host'], $this->options['port'], $this->options['timeout'], 'persistent_id_' . $this->options['select']);
  47. } else {
  48. $this->handler->connect($this->options['host'], $this->options['port'], $this->options['timeout']);
  49. }
  50. if ('' != $this->options['password']) {
  51. $this->handler->auth($this->options['password']);
  52. }
  53. if (0 != $this->options['select']) {
  54. $this->handler->select($this->options['select']);
  55. }
  56. } elseif (class_exists('\Predis\Client')) {
  57. $params = [];
  58. foreach ($this->options as $key => $val) {
  59. if (in_array($key, ['aggregate', 'cluster', 'connections', 'exceptions', 'prefix', 'profile', 'replication', 'parameters'])) {
  60. $params[$key] = $val;
  61. unset($this->options[$key]);
  62. }
  63. }
  64. if ('' == $this->options['password']) {
  65. unset($this->options['password']);
  66. }
  67. $this->handler = new \Predis\Client($this->options, $params);
  68. $this->options['prefix'] = '';
  69. } else {
  70. throw new \BadFunctionCallException('not support: redis');
  71. }
  72. }
  73. /**
  74. * 判断缓存
  75. * @access public
  76. * @param string $name 缓存变量名
  77. * @return bool
  78. */
  79. public function has($name)
  80. {
  81. return $this->handler->exists($this->getCacheKey($name));
  82. }
  83. /**
  84. * 读取缓存
  85. * @access public
  86. * @param string $name 缓存变量名
  87. * @param mixed $default 默认值
  88. * @return mixed
  89. */
  90. public function get($name, $default = false)
  91. {
  92. $this->readTimes++;
  93. $value = $this->handler->get($this->getCacheKey($name));
  94. if (is_null($value) || false === $value) {
  95. return $default;
  96. }
  97. return $this->unserialize($value);
  98. }
  99. /**
  100. * 写入缓存
  101. * @access public
  102. * @param string $name 缓存变量名
  103. * @param mixed $value 存储数据
  104. * @param integer|\DateTime $expire 有效时间(秒)
  105. * @return boolean
  106. */
  107. public function set($name, $value, $expire = null)
  108. {
  109. $this->writeTimes++;
  110. if (is_null($expire)) {
  111. $expire = $this->options['expire'];
  112. }
  113. if ($this->tag && !$this->has($name)) {
  114. $first = true;
  115. }
  116. $key = $this->getCacheKey($name);
  117. $expire = $this->getExpireTime($expire);
  118. $value = $this->serialize($value);
  119. if ($expire) {
  120. $result = $this->handler->setex($key, $expire, $value);
  121. } else {
  122. $result = $this->handler->set($key, $value);
  123. }
  124. isset($first) && $this->setTagItem($key);
  125. return $result;
  126. }
  127. /**
  128. * 自增缓存(针对数值缓存)
  129. * @access public
  130. * @param string $name 缓存变量名
  131. * @param int $step 步长
  132. * @return false|int
  133. */
  134. public function inc($name, $step = 1)
  135. {
  136. $this->writeTimes++;
  137. $key = $this->getCacheKey($name);
  138. return $this->handler->incrby($key, $step);
  139. }
  140. /**
  141. * 自减缓存(针对数值缓存)
  142. * @access public
  143. * @param string $name 缓存变量名
  144. * @param int $step 步长
  145. * @return false|int
  146. */
  147. public function dec($name, $step = 1)
  148. {
  149. $this->writeTimes++;
  150. $key = $this->getCacheKey($name);
  151. return $this->handler->decrby($key, $step);
  152. }
  153. /**
  154. * 删除缓存
  155. * @access public
  156. * @param string $name 缓存变量名
  157. * @return boolean
  158. */
  159. public function rm($name)
  160. {
  161. $this->writeTimes++;
  162. return $this->handler->del($this->getCacheKey($name));
  163. }
  164. /**
  165. * 清除缓存
  166. * @access public
  167. * @param string $tag 标签名
  168. * @return boolean
  169. */
  170. public function clear($tag = null)
  171. {
  172. if ($tag) {
  173. // 指定标签清除
  174. $keys = $this->getTagItem($tag);
  175. $this->handler->del($keys);
  176. $tagName = $this->getTagKey($tag);
  177. $this->handler->del($tagName);
  178. return true;
  179. }
  180. $this->writeTimes++;
  181. return $this->handler->flushDB();
  182. }
  183. /**
  184. * redis 哈希表(hash)类型
  185. * 批量填充HASH表。不是字符串类型的VALUE,自动转换成字符串类型。使用标准的值。NULL值将被储存为一个空的字符串。
  186. *
  187. * 可以批量添加更新 value,key 不存在将创建,存在则更新值
  188. *
  189. * @param $key
  190. * @param $fieldArr
  191. * @return
  192. * 如果命令执行成功,返回OK。
  193. * 当key不是哈希表(hash)类型时,返回一个错误。
  194. */
  195. public function hMSet($key,$fieldArr){
  196. return $this->handler->hmset($key,$fieldArr);
  197. }
  198. public function hGet( $key, $hashKeys ) {
  199. return $this->handler->hget($key,$hashKeys);
  200. }
  201. public function hMGet( $key, $hashKeys ) {
  202. return $this->handler->hMGet($key,$hashKeys);
  203. }
  204. public function hdel( $key, $hashKeys ) {
  205. return $this->handler->hdel($key,$hashKeys);
  206. }
  207. public function hkeys( $key ) {
  208. return $this->handler->hkeys($key);
  209. }
  210. /**
  211. * redis 哈希表(hash)类型
  212. * 返回哈希表 $key 中,所有的域和值。
  213. * @param $key
  214. *
  215. */
  216. public function hGetAll($key){
  217. return $this->handler->hGetAll($key);
  218. }
  219. /**
  220. * redis 获取哈希表中所有值。
  221. * 返回哈希表 $key 中,所有的域和值。
  222. * @param $key
  223. *
  224. */
  225. public function hGetvals($key){
  226. return $this->handler->hvals($key);
  227. }
  228. /**
  229. * redis 获取哈希表中字段的数量
  230. * 返回哈希表 $key 中,所有的域和值。
  231. * @param $key
  232. *
  233. */
  234. public function hGetLen($key){
  235. return $this->handler->hlen($key);
  236. }
  237. /**
  238. * 添加一个字符串值到LIST容器的顶部(左侧),如果KEY不存在,曾创建一个LIST容器,如果KEY存在并且不是一个LIST容器,那么返回FLASE。
  239. *
  240. * @param unknown $key
  241. * @param unknown $val
  242. */
  243. public function lPush($key,$val){
  244. return $this->handler->lPush($key,$val);
  245. }
  246. /*
  247. *将 key 中储存的数字值增一。
  248. *如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 INCR 操作。
  249. */
  250. public function Incr($key){
  251. $this->handler->incr($key);
  252. }
  253. /*
  254. *将 key 中储存的数字值增加数量。
  255. *如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 incrby 操作。
  256. */
  257. public function Incrby($key,$number){
  258. $this->handler->incrby($key,$number);
  259. }
  260. /*
  261. *将 key 中储存的数字值减一。
  262. *如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 INCR 操作。
  263. */
  264. public function Decr($key){
  265. $this->handler->decr($key);
  266. }
  267. /*
  268. *将 key 中储存的数字值减少数量。
  269. *如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 Decrby 操作。
  270. */
  271. public function Decrby($key,$number){
  272. $this->handler->decrby($key,$number);
  273. }
  274. public function rPush($key,$field_arr){
  275. // $keys =array($key,$vals);
  276. if(is_array($field_arr)){
  277. array_unshift($field_arr,$key);
  278. $keys = $field_arr;
  279. }else{
  280. $keys = array($key,$field_arr);
  281. }
  282. // return $this->redis->rPush($key,$val);
  283. return call_user_func_array(array($this->handler, "rPush"), $keys);
  284. }
  285. /**
  286. * 返回LIST顶部(左侧)的VALUE,并且从LIST中把该VALUE弹出。
  287. * @param unknown $key
  288. */
  289. public function lPop($key){
  290. return $this->handler->lPop($key);
  291. }
  292. public function rPop($key){
  293. return $this->handler->rPop($key);
  294. }
  295. public function lGetRange($key,$start,$end){
  296. return $this->handler->lGetRange($key,$start,$end);
  297. }
  298. public function lRange($key,$start,$end){
  299. return $this->handler->lRange($key,$start,$end);
  300. }
  301. public function Llen($key){
  302. return $this->handler->llen($key);
  303. }
  304. public function Ltrim($key,$start,$end){
  305. return $this->handler->ltrim($key,$start,$end);
  306. }
  307. /**
  308. * 加锁
  309. */
  310. public function Setnx($key,$exptime){
  311. return $this->handler->setnx($key,$exptime);
  312. }
  313. public function del($key){
  314. return $this->handler->del($key);
  315. }
  316. /**
  317. * 缓存标签
  318. * @access public
  319. * @param string $name 标签名
  320. * @param string|array $keys 缓存标识
  321. * @param bool $overlay 是否覆盖
  322. * @return $this
  323. */
  324. public function tag($name, $keys = null, $overlay = false)
  325. {
  326. if (is_null($keys)) {
  327. $this->tag = $name;
  328. } else {
  329. $tagName = $this->getTagKey($name);
  330. if ($overlay) {
  331. $this->handler->del($tagName);
  332. }
  333. foreach ($keys as $key) {
  334. $this->handler->sAdd($tagName, $key);
  335. }
  336. }
  337. return $this;
  338. }
  339. /**
  340. * 更新标签
  341. * @access protected
  342. * @param string $name 缓存标识
  343. * @return void
  344. */
  345. protected function setTagItem($name)
  346. {
  347. if ($this->tag) {
  348. $tagName = $this->getTagKey($this->tag);
  349. $this->handler->sAdd($tagName, $name);
  350. }
  351. }
  352. /**
  353. * 获取标签包含的缓存标识
  354. * @access protected
  355. * @param string $tag 缓存标签
  356. * @return array
  357. */
  358. protected function getTagItem($tag)
  359. {
  360. $tagName = $this->getTagKey($tag);
  361. return $this->handler->sMembers($tagName);
  362. }
  363. }