Lite.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <?php
  2. /**
  3. * Redis 拓展类
  4. * @author: 喵了个咪 <wenzhenxi@vip.qq.com> 2015-11-15
  5. */
  6. class Redis_Lite extends PhalApi_Cache_Redis{
  7. private $db_old;
  8. //---------------------------------------------------string类型-------------------------------------------------
  9. /**
  10. * 将value 的值赋值给key,生存时间为永久 并根据名称自动切换库
  11. */
  12. public function set_forever($key, $value, $dbname = 0){
  13. $this->switchDB($dbname);
  14. return $this->redis->set($this->formatKey($key), $this->formatValue($value));
  15. }
  16. /**
  17. * 获取value 并根据名称自动切换库
  18. */
  19. public function get_forever($key, $dbname = 0){
  20. $this->switchDb($dbname);
  21. $value = $this->redis->get($this->formatKey($key));
  22. return $value !== FALSE ? $this->unformatValue($value) : NULL;
  23. }
  24. /**
  25. * 存入一个有实效性的键值队
  26. */
  27. public function set_time($key, $value, $expire = 600, $dbname = 0){
  28. $this->switchDB($dbname);
  29. return $this->redis->setex($this->formatKey($key), $expire, $this->formatValue($value));
  30. }
  31. /**
  32. * 统一get/set方法,对于set_Time使用get_Time
  33. */
  34. public function get_time($key, $dbname = 0){
  35. $this->switchDB($dbname);
  36. $value = $this->redis->get($this->formatKey($key));
  37. return $value !== FALSE ? $this->unformatValue($value) : NULL;
  38. }
  39. /**
  40. * 得到一个key的生存时间
  41. */
  42. public function get_time_ttl($key, $dbname = 0){
  43. $this->switchDB($dbname);
  44. $value = $this->redis->ttl($this->formatKey($key));
  45. return $value !== FALSE ? $this->unformatValue($value) : NULL;
  46. }
  47. /**
  48. * 批量插入k-v,请求的v需要是一个数组 如下格式
  49. * array('key0' => 'value0', 'key1' => 'value1')
  50. */
  51. public function set_list($value, $dbname = 0){
  52. $this->switchDB($dbname);
  53. $data = array();
  54. foreach($value as $k => $v){
  55. $data[$this->formatKey($k)] = $this->formatValue($v);
  56. }
  57. return $this->redis->mset($data);
  58. }
  59. /**
  60. * 批量获取k-v,请求的k需要是一个数组
  61. */
  62. public function get_list($key, $dbname = 0){
  63. $this->switchDB($dbname);
  64. $data = array();
  65. foreach($key as $k => $v){
  66. $data[] = $this->formatKey($v);
  67. }
  68. $rs = $this->redis->mget($data);
  69. foreach($rs as $k => $v){
  70. $rs[$k] = $this->unformatValue($v);
  71. }
  72. return $rs;
  73. }
  74. /**
  75. * 判断key是否存在。存在 true 不在 false
  76. */
  77. public function get_exists($key, $dbname = 0){
  78. $this->switchDb($dbname);
  79. return $this->redis->exists($this->formatKey($key));
  80. }
  81. /**
  82. * 返回原来key中的值,并将value写入key
  83. */
  84. public function get_getSet($key, $value, $dbname = 0){
  85. $this->switchDb($dbname);
  86. $value = $this->redis->getSet($this->formatKey($key), $this->formatValue($value));
  87. return $value !== FALSE ? $this->unformatValue($value) : NULL;
  88. }
  89. /**
  90. * string,名称为key的string的值在后面加上value
  91. */
  92. public function set_append($key, $value, $dbname = 0){
  93. $this->switchDb($dbname);
  94. return $this->redis->append($this->formatKey($key), $this->formatValue($value));
  95. }
  96. /**
  97. * 返回原来key中的值,并将value写入key
  98. */
  99. public function get_strlen($key, $dbname = 0){
  100. $this->switchDb($dbname);
  101. return $this->redis->strlen($this->formatKey($key));
  102. }
  103. /**
  104. * 自动增长
  105. * value为自增长的值默认1
  106. */
  107. public function get_incr($key, $value = 1, $dbname = 0){
  108. $this->switchDb($dbname);
  109. return $this->redis->incr($this->formatKey($key), $value);
  110. }
  111. /**
  112. * 自动减少
  113. * value为自减少的值默认1
  114. */
  115. public function get_decr($key, $value = 1, $dbname = 0){
  116. $this->switchDb($dbname);
  117. return $this->redis->decr($this->formatKey($key), $value);
  118. }
  119. //------------------------------------------------List类型-------------------------------------------------
  120. /**
  121. * 写入队列左边 并根据名称自动切换库
  122. */
  123. public function set_lPush($key, $value, $dbname = 0){
  124. $this->switchDb($dbname);
  125. return $this->redis->lPush($this->formatKey($key), $this->formatValue($value));
  126. }
  127. /**
  128. * 写入队列左边 如果value已经存在,则不添加 并根据名称自动切换库
  129. */
  130. public function set_lPushx($key, $value, $dbname = 0){
  131. $this->switchDb($dbname);
  132. return $this->redis->lPushx($this->formatKey($key), $this->formatValue($value));
  133. }
  134. /**
  135. * 写入队列右边 并根据名称自动切换库
  136. */
  137. public function set_rPush($key, $value, $dbname = 0){
  138. $this->switchDb($dbname);
  139. return $this->redis->rPush($this->formatKey($key), $this->formatValue($value));
  140. }
  141. /**
  142. * 写入队列右边 如果value已经存在,则不添加 并根据名称自动切换库
  143. */
  144. public function set_rPushx($key, $value, $dbname = 0){
  145. $this->switchDb($dbname);
  146. return $this->redis->rPushx($this->formatKey($key), $this->formatValue($value));
  147. }
  148. /**
  149. * 读取队列左边
  150. */
  151. public function get_lPop($key, $dbname = 0){
  152. $this->switchDb($dbname);
  153. $value = $this->redis->lPop($this->formatKey($key));
  154. return $value != FALSE ? $this->unformatValue($value) : NULL;
  155. }
  156. /**
  157. * 读取队列右边
  158. */
  159. public function get_rPop($key, $dbname = 0){
  160. $this->switchDb($dbname);
  161. $value = $this->redis->rPop($this->formatKey($key));
  162. return $value != FALSE ? $this->unformatValue($value) : NULL;
  163. }
  164. /**
  165. * 读取队列左边 如果没有读取到阻塞一定时间 并根据名称自动切换库
  166. */
  167. public function get_blPop($key, $dbname = 0){
  168. $this->switchDb($dbname);
  169. $value = $this->redis->blPop($this->formatKey($key), DI()->config->get('app.redis.blocking'));
  170. return $value != FALSE ? $this->unformatValue($value[1]) : NULL;
  171. }
  172. /**
  173. * 读取队列右边 如果没有读取到阻塞一定时间 并根据名称自动切换库
  174. */
  175. public function get_brPop($key, $dbname = 0){
  176. $this->switchDb($dbname);
  177. $value = $this->redis->brPop($this->formatKey($key), DI()->config->get('app.redis.blocking'));
  178. return $value != FALSE ? $this->unformatValue($value[1]) : NULL;
  179. }
  180. /**
  181. * 名称为key的list有多少个元素
  182. */
  183. public function get_lSize($key, $dbname = 0){
  184. $this->switchDb($dbname);
  185. return $this->redis->lSize($this->formatKey($key));
  186. }
  187. /**
  188. * 返回名称为key的list中指定位置的元素
  189. */
  190. public function set_lSet($key, $index, $value, $dbname = 0){
  191. $this->switchDb($dbname);
  192. return $this->redis->lSet($this->formatKey($key), $index, $this->formatValue($value));
  193. }
  194. /**
  195. * 返回名称为key的list中指定位置的元素
  196. */
  197. public function get_lGet($key, $index, $dbname = 0){
  198. $this->switchDb($dbname);
  199. $value = $this->redis->lGet($this->formatKey($key), $index);
  200. return $value != FALSE ? $this->unformatValue($value[1]) : NULL;
  201. }
  202. /**
  203. * 返回名称为key的list中start至end之间的元素(end为 -1 ,返回所有)
  204. */
  205. public function get_lRange($key, $start, $end, $dbname = 0){
  206. $this->switchDb($dbname);
  207. $rs = $this->redis->lRange($this->formatKey($key), $start, $end);
  208. foreach($rs as $k => $v){
  209. $rs[$k] = $this->unformatValue($v);
  210. }
  211. return $rs;
  212. }
  213. /**
  214. * 截取名称为key的list,保留start至end之间的元素
  215. */
  216. public function get_lTrim($key, $start, $end, $dbname = 0){
  217. $this->switchDb($dbname);
  218. $rs = $this->redis->lTrim($this->formatKey($key), $start, $end);
  219. foreach($rs as $k => $v){
  220. $rs[$k] = $this->unformatValue($v);
  221. }
  222. return $rs;
  223. }
  224. //未实现 lRem lInsert rpoplpush
  225. //----------------------------------------------------set类型---------------------------------------------------
  226. //----------------------------------------------------zset类型---------------------------------------------------
  227. //----------------------------------------------------Hash类型---------------------------------------------------
  228. //----------------------------------------------------通用方法---------------------------------------------------
  229. /**
  230. * 设定一个key的活动时间(s)
  231. */
  232. public function setTimeout($key, $time = 600, $dbname = 0){
  233. $this->switchDB($dbname);
  234. return $this->redis->setTimeout($key, $time);
  235. }
  236. /**
  237. * 返回key的类型值
  238. */
  239. public function type($key, $dbname = 0){
  240. $this->switchDB($dbname);
  241. return $this->redis->type($key);
  242. }
  243. /**
  244. * key存活到一个unix时间戳时间
  245. */
  246. public function expireAt($key, $time = 600, $dbname = 0){
  247. $this->switchDB($dbname);
  248. return $this->redis->expireAt($key, $time);
  249. }
  250. /**
  251. * 随机返回key空间的一个key
  252. */
  253. public function randomKey($key, $dbname = 0){
  254. $this->switchDB($dbname);
  255. return $this->redis->randomKey();
  256. }
  257. /**
  258. * 返回满足给定pattern的所有key
  259. */
  260. public function keys($key, $pattern, $dbname = 0){
  261. $this->switchDB($dbname);
  262. return $this->redis->keys($key, $pattern);
  263. }
  264. /**
  265. * 查看现在数据库有多少key
  266. */
  267. public function dbSize($dbname = 0){
  268. $this->switchDB($dbname);
  269. return $this->redis->dbSize();
  270. }
  271. /**
  272. * 转移一个key到另外一个数据库
  273. */
  274. public function move($key, $db, $dbname = 0){
  275. $this->switchDB($dbname);
  276. $arr = DI()->config->get('app.redis.DB');
  277. $rs = isset($arr[$db]) ? $arr[$db] : $db;
  278. return $this->redis->move($key, $rs);
  279. }
  280. /**
  281. * 给key重命名
  282. */
  283. public function rename($key, $key2, $dbname = 0){
  284. $this->switchDB($dbname);
  285. return $this->redis->rename($key, $key2);
  286. }
  287. /**
  288. * 给key重命名 如果重新命名的名字已经存在,不会替换成功
  289. */
  290. public function renameNx($key, $key2, $dbname = 0){
  291. $this->switchDB($dbname);
  292. return $this->redis->renameNx($key, $key2);
  293. }
  294. /**
  295. * 删除键值 并根据名称自动切换库(对所有通用)
  296. */
  297. public function del($key, $dbname = 0){
  298. $this->switchDB($dbname);
  299. return $this->redis->del($this->formatKey($key));
  300. }
  301. /**
  302. * 返回redis的版本信息等详情
  303. */
  304. public function info(){
  305. return $this->redis->info();
  306. }
  307. /**
  308. * 切换DB并且获得操作实例
  309. */
  310. public function get_redis($dbname = 0){
  311. $this->switchDb($dbname);
  312. return $this->redis;
  313. }
  314. /**
  315. * 查看连接状态
  316. */
  317. public function ping(){
  318. return $this->redis->ping();
  319. }
  320. /**
  321. * 内部切换Redis-DB 如果已经在某个DB上则不再切换
  322. */
  323. private function switchDB($name){
  324. $arr = DI()->config->get('app.redis.DB');
  325. if(is_int($name)){
  326. $db = $name;
  327. }else{
  328. $db = isset($arr[$name]) ? $arr[$name] : $name;
  329. }
  330. if($this->db_old != $db){
  331. $this->redis->select($db);
  332. $this->db_old = $db;
  333. }
  334. }
  335. //-------------------------------------------------------谨慎使用------------------------------------------------
  336. /**
  337. * 清空当前数据库
  338. */
  339. public function flushDB($dbname = 0){
  340. $this->switchDB($dbname);
  341. return $this->redis->flushDB();
  342. }
  343. /**
  344. * 清空所有数据库
  345. */
  346. public function flushAll(){
  347. return $this->redis->flushAll();
  348. }
  349. /**
  350. * 选择从服务器
  351. */
  352. public function slaveof($host, $port){
  353. return $this->redis->slaveof($host, $port);
  354. }
  355. /**
  356. * 将数据同步保存到磁盘
  357. */
  358. public function save(){
  359. return $this->redis->save();
  360. }
  361. /**
  362. * 将数据异步保存到磁盘
  363. */
  364. public function bgsave(){
  365. return $this->redis->bgsave();
  366. }
  367. /**
  368. * 返回上次成功将数据保存到磁盘的Unix时戳
  369. */
  370. public function lastSave(){
  371. return $this->redis->lastSave();
  372. }
  373. /**
  374. * 使用aof来进行数据库持久化
  375. */
  376. public function bgrewriteaof($dbname = 0){
  377. $this->switchDB($dbname);
  378. return $this->redis->bgrewriteaof();
  379. }
  380. }