Redis.class.php
31.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
<?php
class Util_Cache_Adapter_Redis {
//连接时长 默认为0 不限制时长
CONST TIMEOUT = 0;
//连接类型 1普通连接 2长连接
CONST CTYPE = 1;
//实例名
public $_redis = null;
private $_is_Cache = true;
//事物对象
private $_transcation = null;
private $_servers = null;
/**
* 初始化
*
* @param int $db
*/
public function __construct( $options = array())
{
//redis是否缓存
$this->_is_cache = defined('UTIL_REDIS_CACHE') ? UTIL_REDIS_CACHE : true;
$db = empty($options['db'])? 0: $options['db'];
$section = empty($options['section'])? 'redis-master':$options['section'];
$this->_servers = Util_Server::factory('cache', 'redis', array(
'section' => $section))->loadBalanceServer ();
if (empty($this->_servers)) {
throw new Util_Cache_Exception('redis server is null.');
}
if (!isset($this->_redis)) {
$this->_redis = new Redis();
if(!$this->_is_cache) {
return false;
} else {
$this->randConnect($db);
}
}
}
/**
* 保持存活
*
* @param int $db
* @return boolean
*/
public function keepAlive($db = 0) {
if(!$this->_is_cache) {
return false;
}
if($this->ping()) {
return true;
}
return $this->randConnect($db);
}
/**
* 随机连接
*
* @param int $db
* @return boolean
*/
private function randConnect($db = 0) {
$masters = $this->_servers['master'];
foreach($masters as $master) {
$this->connect($master['host'], $master['port'], self::TIMEOUT, $db, self::CTYPE);
if($this->ping()) {
return true;
} else {
$slaves = $this->_servers['slave'][$master['host'].'-'.$master['port']];
foreach($slaves as $slave) {
$this->connect($slave['host'], $slave['port'], self::TIMEOUT, $db, self::CTYPE);
if($this->ping()) {
return true;
}
}
}
}
return false;
}
/**
* 连接redis服务器
*
* @param string $host
* @param string $port
* @param int $timeout
* @param string $dbname
* @param int $type
*/
private function connect($host, $port, $timeout, $dbname, $type)
{
switch ($type) {
case 1:
$this->_redis->connect($host, $port, $timeout);
break;
case 2:
$this->_redis->pconnect($host, $port, $timeout);
break;
default:
break;
}
}
/**
* 查看redis连接是否断开
*
* @return bool true:连接未断开 false:连接已断开
*/
public function ping()
{
$return = @$this->_redis->ping();
return $return == '+PONG' ? true : false;
}
/**
* 选择数据库
*
* @param int $db
*/
public function selectDB($db = 0)
{
if(!$this->keepAlive()) {
return false;
}
$this->_redis->select($db);
}
/**
* 设置redis模式参数
*
* @param array $option 参数数组键值对
* @return true|false
*/
public function setOption($option = array())
{
if(!$this->keepAlive()) {
return false;
}
return $this->_redis->setOption($option);
}
/**
* 获取redis模式参数
*
* @param array $option 要获取的参数数组
*/
public function getOption($option=array())
{
if(!$this->keepAlive()) {
return false;
}
return $this->_redis->getOption($option);
}
/**
* 写入key-value
*
* @param string $key 要存储的key名
* @param mixed $value 要存储的值
* @param int $type 写入方式 0:不添加到现有值后面 1:添加到现有值的后面 默认0
* @param int $repeat 0:不判断重复 1:判断重复
* @param float $time 过期时间(S)
* @param int $old 1:返回旧的value 默认0
* @return bool true:成功 flase:失败
*/
public function set($key, $value, $type = 0, $repeat = 0,$time = 0, $old = 0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($type) {
$return = $this->_redis->append($key, $value);
} else {
if ($old) {
$return = $this->_redis->getSet($key, $value);
} else {
if ($repeat) {
$return = $this->_redis->setnx($key, $value);
} else {
if ($time && is_numeric($time)) $return = $this->_redis->setex($key, $time, $value);
else $return = $this->_redis->set($key, $value);
}
}
}
return $return;
}
/**
* 获取某个key值 如果指定了start end 则返回key值的start跟end之间的字符
*
* @param string|array $key 要获取的key或者key数组
* @param int $start 字符串开始index
* @param int $end 字符串结束index
* @return mixed 如果key存在则返回key值 如果不存在返回false
*/
public function get($key = null, $start = null, $end = null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if (is_array($key) && !empty($key)) {
$return = $this->_redis->getMultiple($key);
} else {
if (isset($start) && isset($end)) $return = $this->_redis->getRange($key);
else $return = $this->_redis->get($key);
}
return $return;
}
/**
* 删除某个key值
*
* @param array $key key数组
* @return long 删除成功的key的个数
*/
public function delete( $key = array())
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->delete($key);
return $return;
}
/**
* 判断某个key是否存在
*
* @param string $key 要查询的key名
*/
public function exists($key)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->exists($key);
return $return;
}
/**
* key值自增或者自减
*
* @param string $key key名
* @param int $type 0:自减 1:自增 默认为1
* @param int $n 自增步长 默认为1
*/
public function deinc($key, $type=1, $n=1)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$n = (int)$n;
switch ($type) {
case 0:
if ($n == 1) $return = $this->_redis->decr($key);
else if ($n > 1) $return = $this->_redis->decrBy($key, $n);
break;
case 1:
if ($n == 1) $return = $this->_redis->incr($key);
else if ($n > 1) $return = $this->_redis->incrBy($key, $n);
break;
default:
$return = false;
break;
}
return $return;
}
/**
* 同时给多个key赋值
*
* @param array $data key值 数组 array('key0'=>'value0','key1'=>'value1')
*/
public function mset($data)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->mset($data);
return $return;
}
/**
* 查询某个key的生存时间
*
* @param string $key 要查询的key名
*/
public function ttl($key)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->ttl($key);
return $return;
}
/**
* 删除到期的key
*
* @param string $key key名
*/
public function persist($key)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->persist($key);
return $return;
}
/**
* 获取某一key的value
*
* @param string $key key名
*/
public function strlen($key)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->strlen($key);
return $return;
}
//+++-------------------------队列操作-------------------------+++//
/**
* 入队列
*
* @param string $list 队列名
* @param mixed $value 入队元素值
* @param int $deriction 0:数据入队列头(左) 1:数据入队列尾(右) 默认为0
* @param int $repeat 判断value是否存在 0:不判断存在 1:判断存在 如果value存在则不入队列
*/
public function listPush($list, $value, $direction = 0, $repeat = 0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
switch ($direction) {
case 0:
if ($repeat)
$return = $this->_redis->lPushx($list,$value);
else
$return = $this->_redis->lPush($list,$value);
break;
case 1:
if ($repeat)
$return = $this->_redis->rPushx($list,$value);
else
$return = $this->_redis->rPush($list,$value);
break;
default:
$return = false;
break;
}
return $return;
}
/**
* 出队列
*
* @param string $list1 队列名
* @param int $deriction 0:数据入队列头(左) 1:数据入队列尾(右) 默认为0
* @param string $list2 第二个队列名 默认null
* @param int $timeout timeout为0:只获取list1队列的数据
* timeout>0:如果队列list1为空 则等待timeout秒 如果还是未获取到数据 则对list2队列执行pop操作
*/
public function listPop($list1, $deriction = 0, $list2 = null, $timeout = 0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
switch ($direction) {
case 0:
if ($timeout && $list2)
$return = $this->_redis->blPop($list1, $list2, $timeout);
else
$return = $this->_redis->lPop($list1);
break;
case 1:
if ($timeout && $list2)
$return = $this->_redis->brPop($list1, $list2, $timeout);
else
$return = $this->_redis->rPop($list1);
break;
default:
$return = false;
break;
}
return $return;
}
/**
* 获取队列中元素数
*
* @param string $list 队列名
*/
public function listSize($list)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->lSize($list);
return $return;
}
/**
* 为list队列的index位置的元素赋值
*
* @param string $list 队列名
* @param int $index 队列元素位置
* @param mixed $value 元素值
*/
public function listSet($list, $index = 0,$value = null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->lSet($list, $index, $value);
return $return;
}
/**
* 获取list队列的index位置的元素值
*
* @param string $list 队列名
* @param int $index 队列元素开始位置 默认0
* @param int $end 队列元素结束位置 $index=0, $end=-1: 返回队列所有元素
*/
public function listGet($list, $index=0, $end=null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($end) {
$return = $this->_redis->lRange($list, $index, $end);
} else {
$return = $this->_redis->lGet($list, $index);
}
return $return;
}
/**
* 截取list队列,保留start至end之间的元素
*
* @param string $list 队列名
* @param int $start 开始位置
* @param int$end 结束位置
*/
public function listTrim($list, $start=0, $end=-1)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->lTrim($list, $start, $end);
return $return;
}
/**
* 删除list队列中count个值为value的元素
*
* @param string $list 队列名
* @param int $value 元素值
* @param int $count 删除个数 0:删除所有 >0:从头部开始删除 <0:从尾部开始删除 默认为0删除所有
*/
public function listRemove($list, $value, $count=0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->lRem($list, $value, $count);
return $return;
}
/**
* 在list中值为$value1的元素前redis::BEFORE或者后redis::AFTER插入值为$value2的元素
*
* 如果list不存在,不会插入,如果$value1不存在,return -1
* @param string $list 队列名
* @param int $location 插入位置 0:之前 1:之后
* @param mixed $value1 要查找的元素值
* @param mixed $value2 要插入的元素值
*/
public function listInsert($list, $location=0, $value1, $value2)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
switch ($location) {
case 0:
$return = $this->_redis->lInsert($list, Redis::BEFORE, $value1, $value2);
break;
case 1:
$return = $this->_redis->lInsert($list, Redis::AFTER, $value1, $value2);
break;
default:
$return = false;
break;
}
return $return;
}
/**
* pop出list1的尾部元素并将该元素push入list2的头部
*
* @param string $list1 队列名
* @param string $list2 队列名
*/
public function rpoplpush($list1, $list2)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->rpoplpush($list1, $list2);
return $return;
}
//+++-------------------------集合操作-------------------------+++//
/**
* 将value写入set集合 如果value存在 不写入 返回false
*
* 如果是有序集合则根据score值更新该元素的顺序
* @param string $set 集合名
* @param mixed $value 值
* @param int $stype 集合类型 0:无序集合 1:有序集和 默认0
* @param int $score 元素排序值
*/
public function setAdd($set, $value = null,$stype = 0, $score = null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($stype && $score !== null) {
$return = $this->_redis->zAdd($set, $score, $value);
} else {
$return = $this->_redis->sAdd($set, $value);
}
return $return;
}
/**
* 移除set1中的value元素 如果指定了set2 则将该元素写入set2
*
* @param string $set1 集合名
* @param mixed $value 值
* @param int $stype 集合类型 0:无序集合 1:有序集和 默认0
* @param string $set2 集合名
*/
public function setMove($set1, $value=null, $stype=0, $set2=null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($set2) {
$return = $this->_redis->sMove($set1, $set2, $value);
} else {
if ($stype) $return = $this->_redis->zRem($set1, $value);
else $return = $this->_redis->sRem($set1, $value);
}
return $return;
}
/**
* 查询set中是否有value元素
*
* @param string $set 集合名
* @param mixed $value 值
*/
public function setSearch($set, $value=null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->sIsMember($set, $value);
return $return;
}
/**
* 返回set中所有元素个数 有序集合要指定$stype=1
*
* 如果是有序集合并指定了$start和$end 则返回score在start跟end之间的元素个数
* @param string $set 集合名
* @param int $stype 集合类型 0:无序集合 1:有序集和 默认0
* @param int $start 开始index
* @param int $end 结束index
*/
public function setSize($set, $stype = 0,$start = 0,$end = 0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($stype) {
if ($start && $end) $return = $this->_redis->zCount($set, $start, $end);
else $return = $this->_redis->zSize($set);
} else {
$return = $this->_redis->sSize($set);
}
return $return;
}
/**
* 随机返回set中一个元素并可选是否删除该元素
*
* @param $set string 集合名
* @param $isdel int 是否删除该元素 0:不删除 1:删除 默认为0
*/
public function setPop($set, $isdel = 0 )
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($isdel) {
$return = $this->_redis->sPop($set);
} else {
$return = $this->_redis->sRandMember($set);
}
return $return;
}
/**
* 求交集 并可选是否将交集保存到新集合
*
* @param array $set 集合名数组
* @param string $newset 要保存到的集合名 默认为null 即不保存交集到新集合
* @param int $stype 集合类型 0:无序集合 1:有序集和 默认0
* @param array $weight 权重 执行function操作时要指定的每个集合的相同元素所占的权重 默认1
* @param string $function 不同集合的相同元素的取值规则函数 SUM:取元素值的和 MAX:取最大值元素 MIN:取最小值元素
*/
public function setInter($set, $newset = null, $stype = 0, $weight = array(1), $function='SUM')
{
if(!$this->keepAlive()) {
return false;
}
$return = array();
if (is_array($set) && !empty($set)) {
if ($newset) {
if ($stype) $return = $this->_redis->zInter($newset, $set, $weight, $function);
else $return = $this->_redis->sInterStore($newset, $set);
} else {
$return = $this->_redis->sInter($set);
}
}
return $return;
}
/**
* 求并集 并可选是否将交集保存到新集合
*
* @param array $set 集合名数组
* @param string $newset 要保存到的集合名 默认为null 即不保存交集到新集合
* @param int $stype 集合类型 0:无序集合 1:有序集和 默认0
* @param array $weight 权重 执行function操作时要指定的每个集合的相同元素所占的权重 默认1
* @param string $function 不同集合的相同元素的取值规则函数 SUM:取元素值的和 MAX:取最大值元素 MIN:取最小值元素
*/
public function setUnion($set, $newset = null,$stype = 0,$weight = array(1), $function='SUM')
{
if(!$this->keepAlive()) {
return false;
}
$return = array();
if (is_array($set) && !empty($set)) {
if ($newset) {
if ($stype) $return = $this->_redis->zUnion($newset, $set, $weight, $function);
else $return = $this->_redis->sUnionStore($newset, $set);
} else {
$return = $this->_redis->sUnion($set);
}
}
return $return;
}
/**
* 求差集 并可选是否将交集保存到新集合
*
* @param array $set 集合名数组
* @param string $newset 要保存到的集合名 默认为null 即不保存交集到新集合
*/
public function setDiff($set,$newset=null)
{
if(!$this->keepAlive()) {
return false;
}
$return = array();
if (is_array($set) && !empty($set)) {
if ($newset) {
$return = $this->_redis->sDiffStore($newset, $set);
} else {
$return = $this->_redis->sDiff($set);
}
}
return $return;
}
/**
* 返回set中所有元素
*
* @param string $set 集合名
*/
public function setMembers($set)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->sMembers($set);
return $return;
}
/**
* 排序 分页等
*
* @param string $set 集合名
* @param array $option 选项
*/
public function setSort($set,$option)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$default_option = array(
'by' => 'some_pattern_*', //要匹配的排序value值
'limit' => array(0, 1), //array(start,length)
'get' => 'some_other_pattern_*', //多个匹配格式:array('some_other_pattern1_*','some_other_pattern2_*')
'sort' => 'asc', // asc|desc 默认asc
'alpha' => TRUE, //
'store' => 'some_need_pattern_*' //永久性排序值
);
$option = array_merge($default_option, $option);
$return = $this->_redis->sort($set, $option);
return $return;
}
//+++-------------------------有序集合操作-------------------------+++//
/**
* ***只针对有序集合操作
*
* 返回set中index从start到end的所有元素
*
* @param string $set 集合名
* @param int $start 开始Index
* @param int $end 结束Index
* @param int $order 排序方式 0:从小到大排序 1:从大到小排序 默认0
* @param bool $score 元素排序值 false:返回数据不带score true:返回数据带score 默认false
*/
public function setRange($set, $start, $end, $order = 0, $score = false)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($order) {
$return = $this->_redis->zRevRange($set, $start, $end, $score);
} else {
$return = $this->_redis->zRange($set, $start, $end, $score);
}
return $return;
}
/**
* ***只针对有序集合操作
*
* 删除set中score从start到end的所有元素
* @param string $set 集合名
* @param int $start 开始score
* @param int $end 结束score
*/
public function setDeleteRange($set, $start, $end)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->zRemRangeByScore($set, $start, $end);
return $return;
}
/**
* ***只针对有序集合操作
*
* 获取set中某个元素的score
* 如果指定了inc参数 则给该元素的score增加inc值
* 如果没有该元素 则将该元素写入集合
* @param string $set 集合名
* @param mixed $value 元素值
* @param int $inc 要给score增加的数值 默认是null 不执行score增加操作
*/
public function setScore($set, $value, $inc = null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($inc) {
$return = $this->_redis->zIncrBy($set, $inc, $value);
} else {
$return = $this->_redis->zScore($set, $value);
}
return $return;
}
//+++-------------------------哈希操作-------------------------+++//
/**
* 将key->value写入hash表中
*
* @param string $hash 哈希表名
* @param array $data 要写入的数据 array('key'=>'value')
*/
public function hashSet($hash, $data)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if (is_array($data) && !empty($data)) {
$return = $this->_redis->hMset($hash, $data);
}
return $return;
}
/**
* 获取hash表的数据
*
* @param string $hash 哈希表名
* @param mixed $key 表中要存储的key名 默认为null 返回所有key>value
* @param int $type 要获取的数据类型 0:返回所有key 1:返回所有value 2:返回所有key->value
*/
public function hashGet($hash, $key = array(),$type=0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($key) {
if (is_array($key) && !empty($key))
$return = $this->_redis->hMGet($hash,$key);
else
$return = $this->_redis->hGet($hash,$key);
} else {
switch ($type) {
case 0:
$return = $this->_redis->hKeys($hash);
break;
case 1:
$return = $this->_redis->hVals($hash);
break;
case 2:
$return = $this->_redis->hGetAll($hash);
break;
default:
$return = false;
break;
}
}
return $return;
}
/**
* 获取hash表中元素个数
*
* @param string $hash 哈希表名
*/
public function hashLen($hash)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->hLen($hash);
return $return;
}
/**
* 删除hash表中的key
*
* @param string $hash 哈希表名
* @param mixed $key 表中存储的key名
*/
public function hashDel($hash,$key)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->hDel($hash,$key);
return $return;
}
/**
* 查询hash表中某个key是否存在
*
* @param string $hash 哈希表名
* @param mixed $key 表中存储的key名
*/
public function hashExists($hash,$key)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->hExists($hash,$key);
return $return;
}
/**
* 自增hash表中某个key的值
*
* @param string $hash 哈希表名
* @param mixed $key 表中存储的key名
* @param int $inc 要增加的值
*/
public function hashInc($hash, $key, $inc)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->hIncrBy($hash, $key, $inc);
return $return;
}
//+++-------------------------其他操作-------------------------+++//
/**
* 自增hash表中某个key的值
*
* @param string $key 哈希表名
* @param mixed $time 表中存储的key名
*/
public function setKeyExpire($key, $time)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->setTimeout($key, $time);
return $return;
}
/**
* 获取满足给定pattern的所有key
*
* @param regexp $key key匹配表达式 模式:user* 匹配以user开始的key
*/
public function getKeys($key = null)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->keys($key);
return $return;
}
/**
* 将数据保存到硬盘 同步/异步
*
* @param int $type 保存方式 0:同步 1:异步 默认0
* @param int $time 是否要获取上次成功将数据保存到磁盘的Unix时戳 0:不返回时间 1:返回时间
*/
public function hwSave($type = 0 , $time = 0)
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
if ($type) {
$return = $this->_redis->bgsave();
} else {
$return = $this->_redis->save();
}
if ($time) {
$return = $this->_redis->lastSave();
}
return $return;
}
/**
* 获取上次成功将数据保存到磁盘的Unix时戳
*/
public function lastSave()
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->lastSave();
return $return;
}
/**
* 获取redis版本信息等详情
*/
public function info()
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->info();
return $return;
}
/**
* 获取数据库中key的数目
*/
public function dbSize()
{
if(!$this->keepAlive()) {
return false;
}
$return = null;
$return = $this->_redis->dbSize();
return $return;
}
//+++-------------------------事务操作-------------------------+++//
/**
* 开始进入事务操作
* @return object 事务对象
*/
public function tranStart()
{
if(!$this->keepAlive()) {
return false;
}
$this->transcation = $this->_redis->multi();
}
/**
* 提交完成事务
* @return bool 事务执行成功 提交操作
*/
public function tranCommit()
{
if(!$this->keepAlive()) {
return false;
}
return $this->transcation->exec();
}
/**
* 回滚事务
* @return bool 事务执行失败 回滚操作
*/
public function tranRollback()
{
if(!$this->keepAlive()) {
return false;
}
return $this->transcation->discard();
}
}