Redis.php 12 KB

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