截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Redis.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?php
  2. namespace app\common\utils;
  3. use think\facade\Cache;
  4. class Redis
  5. {
  6. public $redis = null;
  7. public function __construct()
  8. {
  9. $this->redis = Cache::store('redis')->handler();
  10. }
  11. /**
  12. * @notes 设置缓存
  13. * @param $key
  14. * @param $val
  15. * @param null $time
  16. * @return false
  17. * @author 段誉
  18. * @date 2021/12/20 12:13
  19. */
  20. public function set($key, $val, $time = null)
  21. {
  22. if (empty($key)) {
  23. return false;
  24. }
  25. if (is_array($val)) {
  26. $val = json_encode($val, JSON_UNESCAPED_UNICODE);
  27. }
  28. return $this->redis->set($key, $val, $time);
  29. }
  30. /**
  31. * @notes 获取缓存
  32. * @param $key
  33. * @return false
  34. * @author 段誉
  35. * @date 2021/12/20 12:14
  36. */
  37. public function get($key)
  38. {
  39. if (empty($key)) {
  40. return false;
  41. }
  42. return $this->redis->get($key);
  43. }
  44. /**
  45. * @notes 删除指定
  46. * @param $key
  47. * @return mixed
  48. * @author 段誉
  49. * @date 2021/12/20 12:02
  50. */
  51. public function del($key)
  52. {
  53. return $this->redis->del($key);
  54. }
  55. /**
  56. * @notes 清空
  57. * @return mixed
  58. * @author 段誉
  59. * @date 2021/12/20 12:02
  60. */
  61. public function flashAll()
  62. {
  63. return $this->redis->flushAll();
  64. }
  65. /**
  66. * @notes 获取集合
  67. * @param $key
  68. * @return mixed
  69. * @author 段誉
  70. * @date 2021/12/20 12:11
  71. */
  72. public function sMembers($key)
  73. {
  74. return $this->redis->sMembers($key);
  75. }
  76. /**
  77. * @notes 设置缓存时间
  78. * @param $key
  79. * @param $ttl
  80. * @return mixed
  81. * @author 段誉
  82. * @date 2021/12/20 12:02
  83. */
  84. public function expire($key, $ttl)
  85. {
  86. return $this->redis->expire($key, $ttl);
  87. }
  88. /**
  89. * @notes 向集合添加成员
  90. * @param $key
  91. * @param $val
  92. * @return mixed
  93. * @author 段誉
  94. * @date 2021/12/20 12:04
  95. */
  96. public function sadd($key, $val)
  97. {
  98. return $this->redis->sAdd($key, $val);
  99. }
  100. /**
  101. * @notes 移除集合成员
  102. * @param $key
  103. * @param $val
  104. * @return mixed
  105. * @author 段誉
  106. * @date 2021/12/20 12:04
  107. */
  108. public function srem($key, $val)
  109. {
  110. return $this->redis->sRem($key, $val);
  111. }
  112. /**
  113. * @notes 对象转数组
  114. * @param $key
  115. * @return array|false
  116. * @author 段誉
  117. * @date 2021/12/20 12:03
  118. */
  119. public function getSmembersArray($key)
  120. {
  121. $res = $this->sMembers($key);
  122. if (is_object($res)) {
  123. return (array)$res;
  124. }
  125. return $res;
  126. }
  127. /**
  128. * @notes 相似keys
  129. * @param $prefix
  130. * @return mixed
  131. * @author 段誉
  132. * @date 2021/12/20 12:02
  133. */
  134. public function keys($prefix)
  135. {
  136. return $this->redis->keys($prefix.'*');
  137. }
  138. }