redis.php 7.8 KB

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