xredis.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014
  1. <?php
  2. /**
  3. * redis操作类
  4. * 说明,任何为false的串,存在redis中都是空串。
  5. * 只有在key不存在时,才会返回false。
  6. * 这点可用于防止缓存穿透
  7. *
  8. */
  9. class Xredis
  10. {
  11. private $redis;
  12. //当前数据库ID号
  13. protected $dbId = 0;
  14. //当前权限认证码
  15. protected $auth;
  16. /**
  17. * 实例化的对象,单例模式.
  18. * @var \iphp\db\Redis
  19. */
  20. static private $_instance = array();
  21. private $k;
  22. protected $k_expire_time = ZERO;
  23. protected $redis_prefix;
  24. //连接属性数组
  25. protected $attr = array(
  26. //连接超时时间,redis配置文件中默认为300秒
  27. 'timeout' => 30,
  28. //选择的数据库。
  29. 'db_id' => ZERO,
  30. );
  31. //什么时候重新建立连接(链接的过期时间)
  32. protected $expireTime;
  33. protected $host;
  34. protected $port;
  35. /*** *
  36. * Xredis constructor.
  37. * initial redis_prefix
  38. * @param array $config
  39. * @param array $attr
  40. */
  41. public function __construct($config = [], $attr = [])
  42. {
  43. $attr = isBlank($attr) ? $this->attr : $attr;
  44. $this->attr = array_merge($this->attr, $attr);
  45. // 建立链接
  46. $this->redis = new Redis();
  47. $this->port = (!isset($config['port']) || isBlank($config['port'])) ? REDIS_PORT : $config['port'];
  48. $this->host = (!isset($config['host']) || isBlank($config['host'])) ? REDIS_HOST : $config['host'];
  49. $this->k_expire_time = isset($config['k_expire_time']) ? $config['k_expire_time'] : ZERO;
  50. // connect($this->host, $this->port, 300 | default 0 不限链接时长))
  51. if ($this->redis->connect($this->host, $this->port)) {
  52. $this->setRedisPrefix($config['redis_prefix']);
  53. log_message::info('redis connect ok');
  54. $auth = (!isset($config['auth']) || isBlank($config['auth'])) ? REDIS_AUTH : $config['auth'];
  55. if ($auth) {
  56. if (!$this->auth($auth)) {
  57. log_message::info('redis auth ::: pass failuer');
  58. }
  59. $this->auth = $auth;
  60. }
  61. $this->expireTime = time() + $this->attr['timeout'];
  62. } else {
  63. log_message::info('redis connect FAILURE');
  64. }
  65. }
  66. /***
  67. * 设置redis前缀
  68. * @param null $redis_prefix
  69. */
  70. public function setRedisPrefix($redis_prefix = null)
  71. {
  72. if (isset($redis_prefix) && !empty($redis_prefix)) {
  73. $this->redis_prefix = $redis_prefix;
  74. log_message::info('$this->redis_prefix'.$this->redis_prefix);
  75. $this->redis->setOption(2, $this->redis_prefix.":");
  76. }
  77. }
  78. /***
  79. * 设置key生存周期
  80. * @param int $k_expire_time
  81. */
  82. public function setKeyexpireTime($k_expire_time = ZERO)
  83. {
  84. $this->k_expire_time = $k_expire_time;
  85. }
  86. /**
  87. * 多例cache配置
  88. * 得到实例化的对象.
  89. * 为每个数据库建立一个连接
  90. * 如果连接超时,将会重新建立一个连接
  91. * @param array $config
  92. * @param int $dbId
  93. * @return \iphp\db\Redis
  94. */
  95. public static function getInstance($config, $attr = array())
  96. {
  97. //如果是一个字符串,将其认为是数据库的ID号。以简化写法。
  98. if (!is_array($attr)) {
  99. $dbId = $attr;
  100. $attr = array();
  101. $attr['db_id'] = $dbId;
  102. }
  103. $attr['db_id'] = $attr['db_id'] ? $attr['db_id'] : ZERO;
  104. $k = md5(implode('', $config) . $attr['db_id']);
  105. if (!(static::$_instance[$k] instanceof self)) {
  106. static::$_instance[$k] = new self($attr);
  107. static::$_instance[$k]->k = $k;
  108. static::$_instance[$k]->dbId = $attr['db_id'];
  109. //如果不是0号库,选择一下数据库。
  110. if ($attr['db_id'] != 0) {
  111. static::$_instance[$k]->select($attr['db_id']);
  112. }
  113. } elseif (time() > static::$_instance[$k]->expireTime) {
  114. static::$_instance[$k]->close();
  115. static::$_instance[$k] = new self($config, $attr);
  116. static::$_instance[$k]->k = $k;
  117. static::$_instance[$k]->dbId = $attr['db_id'];
  118. //如果不是0号库,选择一下数据库。
  119. if ($attr['db_id'] != 0) {
  120. static::$_instance[$k]->select($attr['db_id']);
  121. }
  122. }
  123. return static::$_instance[$k];
  124. }
  125. private function __clone()
  126. {
  127. }
  128. /**
  129. * 执行原生的redis操作
  130. * @return \Redis
  131. */
  132. public function getRedis()
  133. {
  134. return $this->redis;
  135. }
  136. /*****************hash表操作函数*******************/
  137. /**
  138. * 得到hash表中一个字段的值
  139. * @param string $key 缓存key
  140. * @param string $field 字段
  141. * @return string|false
  142. */
  143. public function hGet($key, $field)
  144. {
  145. return $this->redis->hGet($key, $field);
  146. }
  147. /**
  148. * 为hash表设定一个字段的值
  149. * @param string $key 缓存key
  150. * @param string $field 字段
  151. * @param string $value 值。
  152. * @return bool
  153. */
  154. public function hSet($key, $field, $value)
  155. {
  156. return $this->redis->hSet($key, $field, $value);
  157. }
  158. /**
  159. * 判断hash表中,指定field是不是存在
  160. * @param string $key 缓存key
  161. * @param string $field 字段
  162. * @return bool
  163. */
  164. public function hExists($key, $field)
  165. {
  166. return $this->redis->hExists($key, $field);
  167. }
  168. /**
  169. * 删除hash表中指定字段 ,支持批量删除
  170. * @param string $key 缓存key
  171. * @param string $field 字段
  172. * @return int
  173. */
  174. public function hdel($key, $field)
  175. {
  176. $fieldArr = explode(',', $field);
  177. $delNum = 0;
  178. foreach ($fieldArr as $row) {
  179. $row = trim($row);
  180. $delNum += $this->redis->hDel($key, $row);
  181. }
  182. return $delNum;
  183. }
  184. /**
  185. * 返回hash表元素个数
  186. * @param string $key 缓存key
  187. * @return int|bool
  188. */
  189. public function hLen($key)
  190. {
  191. return $this->redis->hLen($key);
  192. }
  193. /**
  194. * 为hash表设定一个字段的值,如果字段存在,返回false
  195. * @param string $key 缓存key
  196. * @param string $field 字段
  197. * @param string $value 值。
  198. * @return bool
  199. */
  200. public function hSetNx($key, $field, $value)
  201. {
  202. return $this->redis->hSetNx($key, $field, $value);
  203. }
  204. /**
  205. * 为hash表多个字段设定值。
  206. * @param string $key
  207. * @param array $value
  208. * @return array|bool
  209. */
  210. public function hMset($key, $value)
  211. {
  212. if (!is_array($value))
  213. return false;
  214. return $this->redis->hMset($key, $value);
  215. }
  216. /**
  217. * 为hash表多个字段设定值。
  218. * @param string $key
  219. * @param array|string $value string以','号分隔字段
  220. * @return array|bool
  221. */
  222. public function hMget($key, $field)
  223. {
  224. if (!is_array($field))
  225. $field = explode(',', $field);
  226. return $this->redis->hMget($key, $field);
  227. }
  228. /**
  229. * 为hash表设这累加,可以负数
  230. * @param string $key
  231. * @param int $field
  232. * @param string $value
  233. * @return bool
  234. */
  235. public function hIncrBy($key, $field, $value)
  236. {
  237. $value = intval($value);
  238. return $this->redis->hIncrBy($key, $field, $value);
  239. }
  240. /**
  241. * 返回所有hash表的所有字段
  242. * @param string $key
  243. * @return array|bool
  244. */
  245. public function hKeys($key)
  246. {
  247. return $this->redis->hKeys($key);
  248. }
  249. /**
  250. * 返回所有hash表的字段值,为一个索引数组
  251. * @param string $key
  252. * @return array|bool
  253. */
  254. public function hVals($key)
  255. {
  256. return $this->redis->hVals($key);
  257. }
  258. /**
  259. * 返回所有hash表的字段值,为一个关联数组
  260. * @param string $key
  261. * @return array|bool
  262. */
  263. public function hGetAll($key)
  264. {
  265. return $this->redis->hGetAll($key);
  266. }
  267. /*********************有序集合操作*********************/
  268. /**
  269. * 给当前集合添加一个元素
  270. * 如果value已经存在,会更新order的值。
  271. * @param string $key
  272. * @param string $order 序号
  273. * @param string $value 值
  274. * @return bool
  275. */
  276. public function zAdd($key, $order, $value)
  277. {
  278. return $this->redis->zAdd($key, $order, $value);
  279. }
  280. /**
  281. * 给$value成员的order值,增加$num,可以为负数
  282. * @param string $key
  283. * @param string $num 序号
  284. * @param string $value 值
  285. * @return 返回新的order
  286. */
  287. public function zinCry($key, $num, $value)
  288. {
  289. return $this->redis->zinCry($key, $num, $value);
  290. }
  291. /**
  292. * 删除值为value的元素
  293. * @param string $key
  294. * @param stirng $value
  295. * @return bool
  296. */
  297. public function zRem($key, $value)
  298. {
  299. return $this->redis->zRem($key, $value);
  300. }
  301. /**
  302. * 集合以order递增排列后,0表示第一个元素,-1表示最后一个元素
  303. * @param string $key
  304. * @param int $start
  305. * @param int $end
  306. * @return array|bool
  307. */
  308. public function zRange($key, $start, $end)
  309. {
  310. return $this->redis->zRange($key, $start, $end);
  311. }
  312. /**
  313. * 集合以order递减排列后,0表示第一个元素,-1表示最后一个元素
  314. * @param string $key
  315. * @param int $start
  316. * @param int $end
  317. * @return array|bool
  318. */
  319. public function zRevRange($key, $start, $end)
  320. {
  321. return $this->redis->zRevRange($key, $start, $end);
  322. }
  323. /**
  324. * 集合以order递增排列后,返回指定order之间的元素。
  325. * min和max可以是-inf和+inf 表示最大值,最小值
  326. * @param string $key
  327. * @param int $start
  328. * @param int $end
  329. * @package array $option 参数
  330. * withscores=>true,表示数组下标为Order值,默认返回索引数组
  331. * limit=>array(0,1) 表示从0开始,取一条记录。
  332. * @return array|bool
  333. */
  334. public function zRangeByScore($key, $start = '-inf', $end = "+inf", $option = array())
  335. {
  336. return $this->redis->zRangeByScore($key, $start, $end, $option);
  337. }
  338. /**
  339. * 集合以order递减排列后,返回指定order之间的元素。
  340. * min和max可以是-inf和+inf 表示最大值,最小值
  341. * @param string $key
  342. * @param int $start
  343. * @param int $end
  344. * @package array $option 参数
  345. * withscores=>true,表示数组下标为Order值,默认返回索引数组
  346. * limit=>array(0,1) 表示从0开始,取一条记录。
  347. * @return array|bool
  348. */
  349. public function zRevRangeByScore($key, $start = '-inf', $end = "+inf", $option = array())
  350. {
  351. return $this->redis->zRevRangeByScore($key, $start, $end, $option);
  352. }
  353. /**
  354. * 返回order值在start end之间的数量
  355. * @param unknown $key
  356. * @param unknown $start
  357. * @param unknown $end
  358. */
  359. public function zCount($key, $start, $end)
  360. {
  361. return $this->redis->zCount($key, $start, $end);
  362. }
  363. /**
  364. * 返回值为value的order值
  365. * @param unknown $key
  366. * @param unknown $value
  367. */
  368. public function zScore($key, $value)
  369. {
  370. return $this->redis->zScore($key, $value);
  371. }
  372. /**
  373. * 返回集合以score递增加排序后,指定成员的排序号,从0开始。
  374. * @param unknown $key
  375. * @param unknown $value
  376. */
  377. public function zRank($key, $value)
  378. {
  379. return $this->redis->zRank($key, $value);
  380. }
  381. /**
  382. * 返回集合以score递增加排序后,指定成员的排序号,从0开始。
  383. * @param unknown $key
  384. * @param unknown $value
  385. */
  386. public function zRevRank($key, $value)
  387. {
  388. return $this->redis->zRevRank($key, $value);
  389. }
  390. /**
  391. * 删除集合中,score值在start end之间的元素 包括start end
  392. * min和max可以是-inf和+inf 表示最大值,最小值
  393. * @param unknown $key
  394. * @param unknown $start
  395. * @param unknown $end
  396. * @return 删除成员的数量。
  397. */
  398. public function zRemRangeByScore($key, $start, $end)
  399. {
  400. return $this->redis->zRemRangeByScore($key, $start, $end);
  401. }
  402. /**
  403. * 返回集合元素个数。
  404. * @param unknown $key
  405. */
  406. public function zCard($key)
  407. {
  408. return $this->redis->zCard($key);
  409. }
  410. /*********************队列操作命令************************/
  411. /**
  412. * 在队列尾部插入一个元素
  413. * @param unknown $key
  414. * @param unknown $value
  415. * 返回队列长度
  416. */
  417. public function rPush($key, $value)
  418. {
  419. return $this->redis->rPush($key, $value);
  420. }
  421. /**
  422. * 在队列尾部插入一个元素 如果key不存在,什么也不做
  423. * @param unknown $key
  424. * @param unknown $value
  425. * 返回队列长度
  426. */
  427. public function rPushx($key, $value)
  428. {
  429. return $this->redis->rPushx($key, $value);
  430. }
  431. /**
  432. * 在队列头部插入一个元素
  433. * @param unknown $key
  434. * @param unknown $value
  435. * 返回队列长度
  436. */
  437. public function lPush($key, $value)
  438. {
  439. return $this->redis->lPush($key, $value);
  440. }
  441. /**
  442. * 在队列头插入一个元素 如果key不存在,什么也不做
  443. * @param unknown $key
  444. * @param unknown $value
  445. * 返回队列长度
  446. */
  447. public function lPushx($key, $value)
  448. {
  449. return $this->redis->lPushx($key, $value);
  450. }
  451. /**
  452. * 返回队列长度
  453. * @param unknown $key
  454. */
  455. public function lLen($key)
  456. {
  457. return $this->redis->lLen($key);
  458. }
  459. /**
  460. * 返回队列指定区间的元素
  461. * @param unknown $key
  462. * @param unknown $start
  463. * @param unknown $end
  464. */
  465. public function lRange($key, $start, $end)
  466. {
  467. return $this->redis->lrange($key, $start, $end);
  468. }
  469. /**
  470. * 返回队列中指定索引的元素
  471. * @param unknown $key
  472. * @param unknown $index
  473. */
  474. public function lIndex($key, $index)
  475. {
  476. return $this->redis->lIndex($key, $index);
  477. }
  478. /**
  479. * 设定队列中指定index的值。
  480. * @param unknown $key
  481. * @param unknown $index
  482. * @param unknown $value
  483. */
  484. public function lSet($key, $index, $value)
  485. {
  486. return $this->redis->lSet($key, $index, $value);
  487. }
  488. /**
  489. * 删除值为vaule的count个元素
  490. * PHP-REDIS扩展的数据顺序与命令的顺序不太一样,不知道是不是bug
  491. * count>0 从尾部开始
  492. * >0 从头部开始
  493. * =0 删除全部
  494. * @param unknown $key
  495. * @param unknown $count
  496. * @param unknown $value
  497. */
  498. public function lRem($key, $count, $value)
  499. {
  500. return $this->redis->lRem($key, $value, $count);
  501. }
  502. /**
  503. * 删除并返回队列中的头元素。
  504. * @param unknown $key
  505. */
  506. public function lPop($key)
  507. {
  508. return $this->redis->lPop($key);
  509. }
  510. /**
  511. * 删除并返回队列中的尾元素
  512. * @param unknown $key
  513. */
  514. public function rPop($key)
  515. {
  516. return $this->redis->rPop($key);
  517. }
  518. /*************redis字符串操作命令*****************/
  519. /**
  520. * 设置一个key
  521. * @param unknown $key
  522. * @param unknown $value
  523. */
  524. public function set($key, $value)
  525. {
  526. return $this->redis->set($key, $value);
  527. }
  528. /**
  529. * 得到一个key
  530. * @param unknown $key
  531. */
  532. public function get($key)
  533. {
  534. return $this->redis->get($key);
  535. }
  536. /**
  537. * 设置一个有过期时间的key
  538. * @param unknown $key
  539. * @param unknown $expire
  540. * @param unknown $value
  541. */
  542. public function setex($key, $expire, $value)
  543. {
  544. return $this->redis->setex($key, $expire, $value);
  545. }
  546. /**
  547. * 设置一个key,如果key存在,不做任何操作.
  548. * @param unknown $key
  549. * @param unknown $value
  550. */
  551. public function setnx($key, $value)
  552. {
  553. return $this->redis->setnx($key, $value);
  554. }
  555. /**
  556. * 批量设置key
  557. * @param unknown $arr
  558. */
  559. public function mset($arr)
  560. {
  561. return $this->redis->mset($arr);
  562. }
  563. /*************redis 无序集合操作命令*****************/
  564. /**
  565. * 返回集合中所有元素
  566. * @param unknown $key
  567. */
  568. public function sMembers($key)
  569. {
  570. return $this->redis->sMembers($key);
  571. }
  572. /**
  573. * 求2个集合的差集
  574. * @param unknown $key1
  575. * @param unknown $key2
  576. */
  577. public function sDiff($key1, $key2)
  578. {
  579. return $this->redis->sDiff($key1, $key2);
  580. }
  581. /**
  582. * 添加集合。由于版本问题,扩展不支持批量添加。这里做了封装
  583. * @param unknown $key
  584. * @param string|array $value
  585. */
  586. public function sAdd($key, $value)
  587. {
  588. if (!is_array($value))
  589. $arr = array($value);
  590. else
  591. $arr = $value;
  592. foreach ($arr as $row)
  593. $this->redis->sAdd($key, $row);
  594. }
  595. /**
  596. * 返回无序集合的元素个数
  597. * @param unknown $key
  598. */
  599. public function scard($key)
  600. {
  601. return $this->redis->scard($key);
  602. }
  603. /**
  604. * 从集合中删除一个元素
  605. * @param unknown $key
  606. * @param unknown $value
  607. */
  608. public function srem($key, $value)
  609. {
  610. return $this->redis->srem($key, $value);
  611. }
  612. /*************redis管理操作命令*****************/
  613. /**
  614. * 选择数据库
  615. * @param int $dbId 数据库ID号
  616. * @return bool
  617. */
  618. public function select($dbId)
  619. {
  620. $this->dbId = $dbId;
  621. return $this->redis->select($dbId);
  622. }
  623. /**
  624. * 清空当前数据库
  625. * @return bool
  626. */
  627. public function flushDB()
  628. {
  629. return $this->redis->flushDB();
  630. }
  631. /**
  632. * 返回当前库状态
  633. * @return array
  634. */
  635. public function info()
  636. {
  637. return $this->redis->info();
  638. }
  639. /**
  640. * 同步保存数据到磁盘
  641. */
  642. public function save()
  643. {
  644. return $this->redis->save();
  645. }
  646. /**
  647. * 异步保存数据到磁盘
  648. */
  649. public function bgSave()
  650. {
  651. return $this->redis->bgSave();
  652. }
  653. /**
  654. * 返回最后保存到磁盘的时间
  655. */
  656. public function lastSave()
  657. {
  658. return $this->redis->lastSave();
  659. }
  660. /**
  661. * 返回key,支持*多个字符,?一个字符
  662. * 只有* 表示全部
  663. * @param string $key
  664. * @return array
  665. */
  666. public function keys($key)
  667. {
  668. return $this->redis->keys($key);
  669. }
  670. /**
  671. * 删除指定key
  672. * @param unknown $key
  673. */
  674. public function del($key)
  675. {
  676. return $this->redis->del($key);
  677. }
  678. /**
  679. * 判断一个key值是不是存在
  680. * @param unknown $key
  681. */
  682. public function exists($key)
  683. {
  684. return $this->redis->exists($key);
  685. }
  686. /**
  687. * 为一个key设定过期时间 单位为秒
  688. * @param unknown $key
  689. * @param unknown $expire
  690. */
  691. public function expire($key, $expire)
  692. {
  693. return $this->redis->expire($key, $expire);
  694. }
  695. /**
  696. * 返回一个key还有多久过期,单位秒
  697. * @param unknown $key
  698. */
  699. public function ttl($key)
  700. {
  701. return $this->redis->ttl($key);
  702. }
  703. /**
  704. * 设定一个key什么时候过期,time为一个时间戳
  705. * @param unknown $key
  706. * @param unknown $time
  707. */
  708. public function exprieAt($key, $time)
  709. {
  710. return $this->redis->expireAt($key, $time);
  711. }
  712. /**
  713. * 关闭服务器链接
  714. */
  715. public function close()
  716. {
  717. return $this->redis->close();
  718. }
  719. /**
  720. * 关闭所有连接
  721. */
  722. public static function closeAll()
  723. {
  724. foreach (static::$_instance as $o) {
  725. if ($o instanceof self)
  726. $o->close();
  727. }
  728. }
  729. /** 这里不关闭连接,因为session写入会在所有对象销毁之后。
  730. * public function __destruct()
  731. * {
  732. * return $this->redis->close();
  733. * }
  734. **/
  735. /**
  736. * 返回当前数据库key数量
  737. */
  738. public function dbSize()
  739. {
  740. return $this->redis->dbSize();
  741. }
  742. /**
  743. * 返回一个随机key
  744. */
  745. public function randomKey()
  746. {
  747. return $this->redis->randomKey();
  748. }
  749. /**
  750. * 得到当前数据库ID
  751. * @return int
  752. */
  753. public function getDbId()
  754. {
  755. return $this->dbId;
  756. }
  757. /**
  758. * 返回当前密码
  759. */
  760. public
  761. function getAuth()
  762. {
  763. return $this->auth;
  764. }
  765. public function getHost()
  766. {
  767. return $this->host;
  768. }
  769. public function getPort()
  770. {
  771. return $this->port;
  772. }
  773. public function getConnInfo()
  774. {
  775. return array(
  776. 'host' => $this->host,
  777. 'port' => $this->port,
  778. 'auth' => $this->auth
  779. );
  780. }
  781. /*********************事务的相关方法************************/
  782. /**
  783. * 监控key,就是一个或多个key添加一个乐观锁
  784. * 在此期间如果key的值如果发生的改变,刚不能为key设定值
  785. * 可以重新取得Key的值。
  786. * @param unknown $key
  787. */
  788. public function watch($key)
  789. {
  790. return $this->redis->watch($key);
  791. }
  792. /**
  793. * 取消当前链接对所有key的watch
  794. * EXEC 命令或 DISCARD 命令先被执行了的话,那么就不需要再执行 UNWATCH 了
  795. */
  796. public function unwatch()
  797. {
  798. return $this->redis->unwatch();
  799. }
  800. /**
  801. * 开启一个事务
  802. * 事务的调用有两种模式Redis::MULTI和Redis::PIPELINE,
  803. * 默认是Redis::MULTI模式,
  804. * Redis::PIPELINE管道模式速度更快,但没有任何保证原子性有可能造成数据的丢失
  805. */
  806. public function multi($type = \Redis::MULTI)
  807. {
  808. return $this->redis->multi($type);
  809. }
  810. /**
  811. * 执行一个事务
  812. * 收到 EXEC 命令后进入事务执行,事务中任意命令执行失败,其余的命令依然被执行
  813. */
  814. public function exec()
  815. {
  816. return $this->redis->exec();
  817. }
  818. /**
  819. * 回滚一个事务
  820. */
  821. public function discard()
  822. {
  823. return $this->redis->discard();
  824. }
  825. /**
  826. * 测试当前链接是不是已经失效
  827. * 没有失效返回+PONG
  828. * 失效返回false
  829. */
  830. public function ping()
  831. {
  832. return $this->redis->ping();
  833. }
  834. public function auth($auth)
  835. {
  836. return $this->redis->auth($auth);
  837. }
  838. /*********************自定义的方法,用于简化操作************************/
  839. /**
  840. * 得到一组的ID号
  841. * @param unknown $prefix
  842. * @param unknown $ids
  843. */
  844. public function hashAll($prefix, $ids)
  845. {
  846. if ($ids == false)
  847. return false;
  848. if (is_string($ids))
  849. $ids = explode(',', $ids);
  850. $arr = array();
  851. foreach ($ids as $id) {
  852. $key = $prefix . '.' . $id;
  853. $res = $this->hGetAll($key);
  854. if ($res != false)
  855. $arr[] = $res;
  856. }
  857. return $arr;
  858. }
  859. /**
  860. * 生成一条消息,放在redis数据库中。使用0号库。
  861. * @param string|array $msg
  862. */
  863. public function pushMessage($lkey, $msg)
  864. {
  865. if (is_array($msg)) {
  866. $msg = json_encode($msg);
  867. }
  868. $key = md5($msg);
  869. //如果消息已经存在,删除旧消息,已当前消息为准
  870. //echo $n=$this->lRem($lkey, 0, $key)."\n";
  871. //重新设置新消息
  872. $this->lPush($lkey, $key);
  873. $this->setex($key, 3600, $msg);
  874. return $key;
  875. }
  876. /**
  877. * 得到条批量删除key的命令
  878. * @param unknown $keys
  879. * @param unknown $dbId
  880. */
  881. public function delKeys($keys, $dbId)
  882. {
  883. $redisInfo = $this->getConnInfo();
  884. $cmdArr = array(
  885. 'redis-cli',
  886. '-a',
  887. $redisInfo['auth'],
  888. '-h',
  889. $redisInfo['host'],
  890. '-p',
  891. $redisInfo['port'],
  892. '-n',
  893. $dbId,
  894. );
  895. $redisStr = implode(' ', $cmdArr);
  896. $cmd = "{$redisStr} KEYS \"{$keys}\" | xargs {$redisStr} del";
  897. return $cmd;
  898. }
  899. }