redis.php 9.4 KB

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