redis.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. /* redis */
  12. /* redis链接 */
  13. function connectionRedis(){
  14. if(!isset($GLOBALS['redisdb'])){
  15. $REDIS_HOST= config('database.REDIS_HOST');
  16. $REDIS_AUTH= config('database.REDIS_AUTH');
  17. $REDIS_PORT= config('database.REDIS_PORT');
  18. $redis = new \Redis();
  19. $redis -> connect($REDIS_HOST,$REDIS_PORT);
  20. if (strlen($REDIS_AUTH)>0){
  21. $redis -> auth($REDIS_AUTH);
  22. }
  23. $GLOBALS['redisdb']=$redis;
  24. }
  25. }
  26. /* 设置缓存 */
  27. function setcache($key,$info){
  28. $config=getConfigPri();
  29. if($config['cache_switch']!=1){
  30. return 1;
  31. }
  32. $GLOBALS['redisdb']->set($key,json_encode($info));
  33. $GLOBALS['redisdb']->expire($key, $config['cache_time']);
  34. return 1;
  35. }
  36. /**
  37. * redis 字符串(String) 类型
  38. * 将key和value对应。如果key已经存在了,它会被覆盖,而不管它是什么类型。
  39. * @param $key
  40. * @param $info
  41. * @param $exp 过期时间
  42. */
  43. function setcaches($key,$info,$time=0){
  44. $GLOBALS['redisdb']->set($key,json_encode($info));
  45. if($time > 0){
  46. $GLOBALS['redisdb']->expire($key, $time);
  47. }
  48. return 1;
  49. }
  50. /* 获取缓存 */
  51. function getcache($key){
  52. $config=getConfigPri();
  53. $isexist=$GLOBALS['redisdb']->Get($key);
  54. if($config['cache_switch']!=1){
  55. $isexist=false;
  56. }
  57. return json_decode($isexist,true);
  58. }
  59. /**
  60. * redis 字符串(String) 类型
  61. * 返回key的value。如果key不存在,返回特殊值nil。如果key的value不是string,就返回错误,因为GET只处理string类型的values。
  62. * @param $key
  63. */
  64. function getcaches($key){
  65. $isexist=$GLOBALS['redisdb']->Get($key);
  66. return json_decode($isexist,true);
  67. }
  68. /**
  69. * 删除一个或多个key
  70. * @param $keys 数组/ 数组以逗号拼接的string
  71. */
  72. function delcache($key){
  73. $isexist=$GLOBALS['redisdb']->del($key);
  74. return 1;
  75. }
  76. /**
  77. * redis 哈希表(hash)类型
  78. * 返回哈希表 $key 中,所有的域和值。
  79. * @param $key
  80. *
  81. */
  82. function hGetAll($key){
  83. return $GLOBALS['redisdb']->hGetAll($key);
  84. }
  85. /**
  86. * 添加一个VALUE到HASH中。如果VALUE已经存在于HASH中,则返回FALSE。
  87. * @param string $key
  88. * @param string $hashKey
  89. * @param string $value
  90. */
  91. function hSet( $key, $hashKey, $value ) {
  92. return $GLOBALS['redisdb']->hSet($key, $hashKey, $value);
  93. }
  94. /**
  95. * redis 哈希表(hash)类型
  96. * 批量填充HASH表。不是字符串类型的VALUE,自动转换成字符串类型。使用标准的值。NULL值将被储存为一个空的字符串。
  97. * 可以批量添加更新 value,key 不存在将创建,存在则更新值
  98. * @param $key
  99. * @param $fieldArr 要设置的键对值
  100. * @return
  101. * 当key不是哈希表(hash)类型时,返回一个错误。
  102. */
  103. function hMSet($key,$fieldArr){
  104. return $GLOBALS['redisdb']->hmset($key,$fieldArr);
  105. }
  106. /**
  107. * 取得HASH中的VALUE,如何HASH不存在,或者KEY不存在返回FLASE。
  108. * @param string $key
  109. * @param string $hashKey
  110. * @return string The value, if the command executed successfully BOOL FALSE in case of failure
  111. */
  112. function hGet($key, $hashKey) {
  113. return $GLOBALS['redisdb']->hGet($key,$hashKey);
  114. }
  115. /**
  116. * 批量取得HASH中的VALUE,如何hashKey不存在,或者KEY不存在返回FLASE。
  117. * @param string $key
  118. * @param array $hashKey
  119. */
  120. function hMGet( $key, $hashKeys ) {
  121. return $GLOBALS['redisdb']->hMGet($key,$hashKeys);
  122. }
  123. /**
  124. * 根据HASH表的KEY,为KEY对应的VALUE自增参数VALUE。浮点型
  125. * 推荐使用 hIncrByFloat 不推荐使用 hIncrBy(整型)
  126. * 先用 hIncrByFloat 再使用 hIncrBy 自增无效
  127. * @param string $key
  128. * @param string $hashKey
  129. * @param value 自增值 整型/小数
  130. */
  131. function hIncrByFloat( $key, $hashKey, $value){
  132. return $GLOBALS['redisdb']->hIncrByFloat( $key, $hashKey, $value);
  133. }
  134. /**
  135. * 根据HASH表的KEY,为KEY对应的VALUE自增参数VALUE。整数型
  136. * @param string $key
  137. * @param string $hashKey
  138. * @param value 自增值 整型
  139. */
  140. function hIncrBy($key,$hashKey, $value){
  141. return $GLOBALS['redisdb']->hIncrBy( $key, $hashKey, $value);
  142. }
  143. /**
  144. * 删除哈希表key中的一个指定域,不存在的域将被忽略。
  145. * @param string $key
  146. * @param string $hashKey
  147. */
  148. function hDel($key,$hashKey){
  149. return $GLOBALS['redisdb']->hDel( $key, $hashKey);
  150. }
  151. /**
  152. * 添加一个字符串值到LIST容器的顶部(左侧),如果KEY不存在,曾创建一个LIST容器,如果KEY存在并且不是一个LIST容器,那么返回FLASE。
  153. * @param string $key
  154. * @param string $val
  155. */
  156. function lPush($key,$val){
  157. return $GLOBALS['redisdb']->lPush($key,$val);
  158. }
  159. /**
  160. * 添加一个字符串值到LIST容器的底部(右侧),如果KEY不存在,曾创建一个LIST容器,如果KEY存在并且不是一个LIST容器,那么返回FLASE。
  161. *
  162. * @param string $key
  163. * @param string $val
  164. */
  165. function rPush($key,$val){
  166. return $GLOBALS['redisdb']->rPush($key,$val);
  167. }
  168. /**
  169. * 返回LIST顶部(左侧)的VALUE,并且从LIST中把该VALUE弹出。
  170. * @param string $key
  171. */
  172. function lPop($key){
  173. return $GLOBALS['redisdb']->lPop($key);
  174. }
  175. /**
  176. * 返回LIST底部(右侧)的VALUE,并且从LIST中把该VALUE弹出。
  177. * @param string $key
  178. */
  179. function rPop($key){
  180. return $GLOBALS['redisdb']->rPop($key);
  181. }
  182. /*
  183. * 构建一个集合(有序集合) 可排序
  184. * @param string $key 集合名称
  185. * @param string $value1 值
  186. * @param double $score1 值
  187. * return 被成功添加的新成员的数量,不包括那些被更新的、已经存在的成员。
  188. */
  189. function zAdd($key,$score1,$value1){
  190. return $GLOBALS['redisdb']->zAdd($key,$score1,$value1);
  191. }
  192. /**
  193. * 返回key对应的有序集合中member的score值。如果member在有序集合中不存在,那么将会返回nil。
  194. * @param string $key
  195. * @param string $member
  196. * @return float
  197. */
  198. function zScore( $key, $member ) {
  199. return $GLOBALS['redisdb']->zScore( $key, $member );
  200. }
  201. /**
  202. * 返回存储在key对应的有序集合中的元素的个数。
  203. * @param string $key
  204. * @return int the set's cardinality
  205. */
  206. function zSize($key){
  207. return $GLOBALS['redisdb']->zCard($key);
  208. }
  209. /**
  210. * 将key对应的有序集合中member元素的scroe加上 value value可以是负值
  211. * @param string $key
  212. * @param float $value (double) value that will be added to the member's score
  213. * @param string $member
  214. * @return float the new value
  215. * @example
  216. * <pre>
  217. * $redis->delete('key');
  218. * $redis->zIncrBy('key', 2.5, 'member1'); // key or member1 didn't exist, so member1's score is to 0
  219. * // before the increment and now has the value 2.5
  220. * $redis->zIncrBy('key', 1, 'member1'); // 3.5
  221. * </pre>
  222. * member 成员的新 score 值,以字符串形式表示。
  223. */
  224. function zIncrBy( $key, $value, $member ) {
  225. return $GLOBALS['redisdb']->zIncrBy( $key, $value, $member );
  226. }
  227. /**
  228. * 取得特定范围内的排序元素,0代表第一个元素,1代表第二个以此类推。-1代表最后一个,-2代表倒数第二个...
  229. * @param string $key
  230. * @param int $start
  231. * @param int $end
  232. * @param bool $withscores
  233. * @return array Array containing the values in specified range.
  234. * @example
  235. * <pre>
  236. * $redis->zAdd('key1', 0, 'val0');
  237. * $redis->zAdd('key1', 2, 'val2');
  238. * $redis->zAdd('key1', 10, 'val10');
  239. * $redis->zRange('key1', 0, -1); // array('val0', 'val2', 'val10')
  240. * // with scores
  241. * $redis->zRange('key1', 0, -1, true); // array('val0' => 0, 'val2' => 2, 'val10' => 10)
  242. * </pre>
  243. * 指定区间内,带有 score 值(可选)的有序集成员的列表。
  244. * zRange 根据 score 正序 zRevRange 倒序
  245. */
  246. function zRange( $key, $start, $end, $withscores = null ) {
  247. return $GLOBALS['redisdb']->zRange( $key, $start, $end, $withscores) ;
  248. }
  249. function zRevRange( $key, $start, $end, $withscores = null ) {
  250. return $GLOBALS['redisdb']->zRevRange( $key, $start, $end, $withscores) ;
  251. }
  252. /**
  253. * 从有序集合中删除指定的成员。
  254. * @param string $key
  255. * @param string $member1
  256. * @return int Number of deleted values
  257. */
  258. function zRem( $key, $member1 ) {
  259. return $GLOBALS['redisdb']->zRem( $key, $member1 );
  260. }
  261. /**
  262. * 模糊查询key类似的列表
  263. * @param string $key 模糊键字符串
  264. * @return array 类似key的数组
  265. */
  266. function blurrySearch($key){
  267. return $GLOBALS['redisdb']->keys($key."*");
  268. }