luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
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
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
package com.hollywood.common.redis;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
import org.springframework.util.StringUtils;
 
import java.util.*;
import java.util.concurrent.TimeUnit;
 
/**
 * Redis工具类
 *
 * @author xiaochen
 * @date 2023年2月25日
 */
@Component
@Slf4j
public final class RedisAutoTemplate {
 
    private final RedisTemplate<String, Object> redisTemplate;
 
    @Autowired
    public RedisAutoTemplate(RedisTemplate<String, Object> redisTemplate) {
        this.redisTemplate = redisTemplate;
    }
 
    /*      Common 相关    */
 
    /**
     * 指定缓存失效时间
     *
     * @param key  键
     * @param time 时间(秒)
     * @return
     */
    public boolean expire(String key, long time) {
        try {
            if (isEmpty(key)) {
                return false;
            }
            if (time > 0) {
                redisTemplate.expire(key, time, TimeUnit.SECONDS);
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 判断key是否存在
     *
     * @param key 键
     * @return true 存在 false不存在
     */
    public boolean hasKey(String key) {
        try {
            if (isEmpty(key)) {
                return false;
            }
            return redisTemplate.hasKey(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 匹配符合正则的key
     * 如果用keys模糊,好像会产生性能问题
     *
     * @param patternKey
     * @return key的集合
     */
    public Set<String> keys(String patternKey) {
        log.debug(" keys key :{}", patternKey);
        try {
            if (isEmpty(patternKey)) {
                return Collections.emptySet();
            }
            return redisTemplate.keys(patternKey);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return Collections.emptySet();
    }
 
 
    /**
     * 根据key删除缓存
     *
     * @param key
     * @return true:成功 false:失败
     */
    public boolean del(String... key) {
        log.debug(" delete key :{}", key.toString());
        try {
            if (isEmpty(key)) {
                return false;
            }
            Set<String> keySet = new HashSet<>();
            for (String str : key) {
                keySet.add(str);
            }
            redisTemplate.delete(keySet);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 根据key删除缓存
     *
     * @param key
     * @return true:成功  false:失败
     */
    public boolean delPattern(String key) {
        log.debug(" delete Pattern keys :{}", key);
        try {
            if (isEmpty(key)) {
                return false;
            }
            redisTemplate.delete(redisTemplate.keys(key));
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 删除一组key值
     *
     * @param keys
     * @return true:成功  false:失败
     */
    public boolean del(Set<String> keys) {
        log.debug(" delete keys :{}", keys.toString());
        try {
            if (isEmpty(keys)) {
                return false;
            }
            redisTemplate.delete(keys);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 设置过期时间
     *
     * @param key     缓存key
     * @param seconds 过期秒数
     * @return true:成功 false:失败
     */
    public boolean setExpire(String key, long seconds) {
        log.debug(" setExp key :{}, seconds: {}", key, seconds);
        try {
            if (isEmpty(key)) {
                return false;
            }
            return redisTemplate.expire(key, seconds, TimeUnit.SECONDS);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 查询过期时间
     *
     * @param key 缓存key
     * @return 秒数 返回0代表为永久有效
     */
    public Long getExpire(String key) {
        log.debug(" getExpire key :{}", key);
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            return redisTemplate.getExpire(key, TimeUnit.SECONDS);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
    /**
     * 缓存中的最大值并+1
     *
     * @param key 缓存key值
     * @return long 缓存中的最大值+1
     */
    public long incr(String key) {
        log.debug(" incr key :{}", key);
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            return redisTemplate.opsForValue().increment(key, 1);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
    /**
     * *递增
     *
     * @param key   键
     * @param delta 要增加几(大于0)
     * @return
     */
    public long incr(String key, long delta) {
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            if (delta < 0) {
                throw new RuntimeException("递增因子必须大于0");
            }
            return redisTemplate.opsForValue().increment(key, delta);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
    /**
     * 递减
     *
     * @param key   键
     * @param delta 要减少几(小于0)
     * @return
     */
    public long decr(String key, long delta) {
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            if (delta < 0) {
                throw new RuntimeException("递减因子必须大于0");
            }
            return redisTemplate.opsForValue().increment(key, -delta);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
    /*      String 相关    */
 
    /**
     * * 缓存存入key-value
     *
     * @param key   缓存键
     * @param value 缓存值
     * @return true:成功 false:失败
     */
    public boolean setStr(String key, String value) {
        log.debug(" setString key :{}, value: {}", key, value);
        try {
            redisTemplate.opsForValue().set(key, value);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 缓存存入key-value
     *
     * @param key     缓存键
     * @param value   缓存值
     * @param seconds 秒数
     * @return true:成功  false:失败
     */
    public boolean setStr(String key, String value, long seconds) {
        log.debug(" setString key :{}, value: {}, timeout:{}", key, value, seconds);
        try {
            if (isEmpty(key) || isEmpty(value)) {
                return false;
            }
            redisTemplate.opsForValue().set(key, value, seconds, TimeUnit.SECONDS);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 根据key取出String value
     *
     * @param key 缓存key值
     * @return String 缓存的String
     */
    public String getStr(String key) {
        log.debug(" getString key :{}", key);
        try {
            if (isEmpty(key)) {
                return null;
            }
            return (String) redisTemplate.opsForValue().get(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
 
 
    /*      对象 相关    */
 
    /**
     * * 缓存中存入序列化的Object对象
     *
     * @param key 缓存key
     * @param obj 存入的序列化对象
     * @return true:成功  false:失败
     */
    public boolean setObj(String key, Object obj) {
        log.debug(" set key :{}, value:{}", key, obj);
        try {
            if (isEmpty(key) || isEmpty(obj)) {
                return false;
            }
            redisTemplate.opsForValue().set(key, obj);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 缓存中存入序列化的Object对象
     *
     * @param seconds 秒
     * @param key     缓存key
     * @param obj     存入的序列化对象
     * @return true:成功  false:失败
     */
    public boolean setObj(String key, Object obj, long seconds) {
        log.debug(" set key :{}, value:{}, seconds:{}", key, obj, seconds);
        try {
            if (isEmpty(key) || isEmpty(obj)) {
                return false;
            }
            redisTemplate.opsForValue().set(key, obj);
            if (seconds > 0) {
                redisTemplate.expire(key, seconds, TimeUnit.SECONDS);
            } else {
                return false;
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 取出缓存中存储的序列化对象
     *
     * @param key 缓存key
     */
    public Object getObj(String key) {
        log.debug(" get key :{}", key);
        try {
            if (isEmpty(key)) {
                return null;
            }
            return redisTemplate.opsForValue().get(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
 
    /**
     * * 取出缓存中存储的序列化对象
     *
     * @param key   缓存key
     * @param clazz 对象类
     * @return <T> 序列化对象
     */
    public <T> T getObj(String key, Class<T> clazz) {
        log.debug(" get key :{}", key);
        try {
            if (isEmpty(key)) {
                return null;
            }
            return (T) redisTemplate.opsForValue().get(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
 
    /*      Map 相关    */
 
    /**
     * * 存入Map数组
     *
     * @param <T>
     * @param key 缓存key
     * @param map 缓存map
     * @return true:成功  false:失败
     */
    public <T> boolean setMap(String key, Map<String, T> map) {
        try {
            if (isEmpty(key) || isEmpty(map)) {
                return false;
            }
            redisTemplate.opsForHash().putAll(key, map);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 存入Map数组并设置时间
     *
     * @param <T>
     * @param key     缓存key
     * @param map     缓存map
     * @param seconds 秒数
     * @return true:成功 * false:失败
     */
    public <T> boolean setMap(String key, Map<String, T> map, long seconds) {
        log.debug(" setMapExp key :{}, value: {}, seconds:{}", key, map, seconds);
        try {
            if (setMap(key, map)) {
                redisTemplate.expire(key, seconds, TimeUnit.SECONDS);
            } else {
                return false;
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 根据key以及hashKey取出对应的Object对象
     *
     * @param key     缓存key
     * @param hashKey 对应map的key
     * @return object map中的对象
     */
    public <T> T getMapObj(String key, String hashKey, Class<T> clazz) {
        log.debug(" getMapkey :{}, hashKey:{}", key, hashKey);
        try {
            if (isEmpty(key) || isEmpty(hashKey)) {
                return null;
            }
            return (T) redisTemplate.opsForHash().get(key, hashKey);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
 
    /**
     * 取出缓存key的map,对应的所有键值
     *
     * @param key 缓存key
     * @return map 缓存的map
     */
    public Map getMap(String key) {
        log.debug(" getMap key :{}", key);
        try {
            if (isEmpty(key)) {
                return null;
            }
            return redisTemplate.opsForHash().entries(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
 
    /**
     * * map中加入新的key
     *
     * @param <T>
     * @param key     缓存key
     * @param hashKey map的Key值
     * @param value   map的value值
     * @return true:成功 * false:失败
     */
    public <T> boolean addMap(String key, Object hashKey, T value) {
        log.debug(" addMap key :{}, hashKey: {}, value:{}", key, hashKey, value);
        try {
            if (isEmpty(key) || isEmpty(hashKey) || isEmpty(value)) {
                return false;
            }
            redisTemplate.opsForHash().put(key, hashKey, value);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * map中加入新的key
     *
     * @param <T>
     * @param key     缓存key
     * @param hashKey map的Key值
     * @param value   map的value值
     * @param seconds 秒数
     * @return true:成功 * false:失败
     */
    public <T> boolean addMap(String key, Object hashKey, T value, long seconds) {
        log.debug(" addMap key :{}, hashKey: {}, seconds:{}, value:{}", key, hashKey, seconds, value);
        try {
            if (seconds > 0) {
                if (addMap(key, hashKey, value)) {
                    expire(key, seconds);
                } else {
                    return false;
                }
            } else {
                return false;
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 取出缓存中map的所有key值
     *
     * @param key 缓存key
     * @return Set<String> map的key值合集
     */
    public Set<Object> getMapKeys(String key) {
        log.debug(" getMapKeys key :{}", key);
        try {
            if (isEmpty(key)) {
                return Collections.emptySet();
            }
            return redisTemplate.opsForHash().keys(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return Collections.emptySet();
    }
 
    /**
     * * 删除map中指定的key值,删除hash表中的值
     *
     * @param key     缓存key
     * @param hashKey map中指定的hashKey
     * @return true:成功  false:失败
     */
    public boolean delMapKey(String key, Object... hashKey) {
        log.debug(" delMapKey key :{}, hashKey:{}", key, hashKey);
        try {
            if (isEmpty(key) || isEmpty(hashKey)) {
                return false;
            }
            redisTemplate.opsForHash().delete(key, hashKey);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
 
    /**
     * 判断hash表中是否有该项的值
     *
     * @param key     缓存key
     * @param hashKey map中指定的hashKey
     * @return true 存在 false不存在
     */
    public boolean hasKeyMap(String key, Object hashKey) {
        log.debug(" hasKeyMap key :{}, hashKey:{}", key, hashKey);
        try {
            if (isEmpty(key) || isEmpty(hashKey)) {
                return false;
            }
            return redisTemplate.opsForHash().hasKey(key, hashKey);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * hash递增 如果不存在,就会创建一个 并把新增后的值返回
     *
     * @param key     键
     * @param hashKey 项
     * @param by      要增加几(大于0)
     * @return
     */
    public double incrMap(String key, Object hashKey, double by) {
        try {
            if (isEmpty(key) || isEmpty(hashKey)) {
                return 0L;
            }
            return redisTemplate.opsForHash().increment(key, hashKey, by);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
    /**
     * hash递减
     *
     * @param key     键
     * @param hashKey 项
     * @param by      要减少记(小于0)
     * @return
     */
    public double decrMap(String key, Object hashKey, double by) {
        try {
            if (isEmpty(key) || isEmpty(hashKey)) {
                return 0L;
            }
            return redisTemplate.opsForHash().increment(key, hashKey, -by);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
 
    }
 
    /**
     * 查询缓存的map的集合大小
     *
     * @param key 缓存key
     * @return long 缓存map的集合大小
     */
    public long getMapSize(String key) {
        log.debug(" getMap key :{}", key);
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            return redisTemplate.opsForHash().size(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
 
 
    /*      List 相关    */
 
 
    /**
     * * 缓存存入List
     *
     * @param <T>
     * @param key  缓存key
     * @param list 缓存List
     * @return true:成功 * false:失败
     */
    public <T> boolean setList(String key, List<T> list) {
        log.debug("setList key :{}, list: {}", key, list);
        try {
            if (isEmpty(key) || isEmpty(list)) {
                return false;
            }
            redisTemplate.opsForList().leftPushAll(key, list.toArray());
            // redisTemplate.opsForList().rightPushAll(key, list.toArray());
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 缓存存入List
     *
     * @param <T>
     * @param key     缓存key
     * @param list    缓存List
     * @param seconds 秒数
     * @return true:成功 * false:失败
     */
    public <T> boolean setList(String key, List<T> list, long seconds) {
        log.debug(" setList key :{}, value:{}, seconds:{}", key, list, seconds);
        try {
            if (seconds > 0) {
                if (setList(key, list)) {
                    expire(key, seconds);
                } else {
                    return false;
                }
            } else {
                return false;
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
 
    /**
     * * Object存入List
     *
     * @param key   缓存key
     * @param value List中的值
     * @return true:成功 * false:失败
     */
    public boolean addList(String key, Object value) {
        log.debug(" addList key :{}, value:{}", key, value);
        try {
            if (isEmpty(key) || isEmpty(value)) {
                return false;
            }
            redisTemplate.opsForList().leftPush(key, value);
            // redisTemplate.opsForList().rightPush(key, value);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * Object存入List
     *
     * @param key     缓存key
     * @param value   List中的值
     * @param seconds 秒数
     * @return true:成功 * false:失败
     */
    public boolean addList(String key, Object value, long seconds) {
        log.debug(" addList key :{}, value:{}", key, value);
        try {
            if (seconds > 0) {
                if (addList(key, value)) {
                    expire(key, seconds);
                } else {
                    return false;
                }
            } else {
                return false;
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 获取list缓存的内容
     *
     * @param key   键
     * @param start 开始
     * @param end   结束 0 到 -1代表所有值
     * @return
     */
    public List<Object> getList(String key, long start, long end) {
        try {
            if (isEmpty(key)) {
                return null;
            }
            return redisTemplate.opsForList().range(key, start, end);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
 
    /**
     * * 根据key值取出对应的list合集
     *
     * @param key 缓存key
     * @return List<Object> 缓存中对应的list合集
     */
    public <V> List<V> getList(String key) {
        log.debug(" getList key :{}", key);
        try {
            if (isEmpty(key)) {
                return null;
            }
            List<V> lists = (List<V>) redisTemplate.opsForList().range(key, 0, -1);
            return lists.size() == 0 ? null : lists;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
    /**
     * * 根据key值截取对应的list合集
     *
     * @param key   缓存key
     * @param start 开始位置
     * @param end   结束位置
     * @return
     */
    public boolean trimList(String key, long start, long end) {
        log.debug(" trimList key :{}", key);
        try {
            if (isEmpty(key)) {
                return false;
            }
            redisTemplate.opsForList().trim(key, start, end);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 取出list合集中指定位置的对象
     *
     * @param key   缓存key
     * @param index 索引位置 索引 index>=0时, 0 表头,1 第二个元素,依次类推;index<0时,-1,表尾,-2倒数第二个元素,依次类推
     * @return Object list指定索引位置的对象
     */
    public Object getIndexList(String key, long index) {
        log.debug(" getIndexList key :{}, index:{}", key, index);
        try {
            if (isEmpty(key)) {
                return null;
            }
            return redisTemplate.opsForList().index(key, index);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
 
    /**
     * 获取list缓存的长度
     *
     * @param key 键
     * @return
     */
    public long getListSize(String key) {
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            return redisTemplate.opsForList().size(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return 0L;
        }
    }
 
 
    /**
     * 根据索引修改list中的某条数据
     *
     * @param key   键
     * @param index 索引
     * @param value 值
     * @return
     */
    public boolean updateIndexList(String key, long index, Object value) {
        try {
            if (isEmpty(key)) {
                return false;
            }
            redisTemplate.opsForList().set(key, index, value);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return false;
        }
    }
 
    /**
     * 移除N个值为value
     *
     * @param key   键
     * @param count 移除多少个
     * @param value 值
     * @return 移除的个数
     */
    public long removeList(String key, long count, Object value) {
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            Long remove = redisTemplate.opsForList().remove(key, count, value);
            return remove;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return 0L;
        }
    }
 
 
    /*      Set 相关    */
 
    /**
     * * set集合存入缓存
     *
     * @param <T>
     * @param key 缓存key
     * @param set 缓存set集合
     * @return true:成功 * false:失败
     */
    public <T> boolean setSet(String key, Set<T> set) {
        log.debug(" setSet key :{}, value:{}", key, set);
        try {
            if (isEmpty(key) || isEmpty(set)) {
                return false;
            }
            redisTemplate.opsForSet().add(key, set.toArray());
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * set集合中增加value
     *
     * @param key   缓存key
     * @param value 增加的value
     * @return true:成功 * false:失败
     */
    public boolean addSet(String key, Object value) {
        log.debug(" addSet key :{}, value:{}", key, value);
        try {
            if (isEmpty(key) || isEmpty(value)) {
                return false;
            }
            redisTemplate.opsForSet().add(key, value);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 将数据放入set缓存
     *
     * @param key    键
     * @param values 值 可以是多个
     * @return true:成功 * false:失败
     */
    public boolean addSet(String key, Object... values) {
        try {
            if (isEmpty(key) || isEmpty(values)) {
                return false;
            }
            redisTemplate.opsForSet().add(key, values);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * set集合存入缓存
     *
     * @param <T>
     * @param key     缓存key
     * @param set     缓存set集合
     * @param seconds 秒数
     * @return true:成功 * false:失败
     */
    public <T> boolean setSet(String key, Set<T> set, long seconds) {
        log.debug(" setSet key :{}, value:{}, seconds:{}", key, set, seconds);
        try {
            if (seconds > 0) {
                if (setSet(key, set)) {
                    redisTemplate.expire(key, seconds, TimeUnit.SECONDS);
                } else {
                    return false;
                }
            } else {
                return false;
            }
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 取出缓存中对应的set合集
     *
     * @param <T>
     * @param key 缓存key
     * @return Set<Object>
     * 缓存中的set合集
     */
    public <T> Set<T> getSet(String key) {
        log.debug(" getSet key :{}", key);
        try {
            if (isEmpty(key)) {
                return null;
            }
            return (Set<T>) redisTemplate.opsForSet().members(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
    /**
     * * 有序集合存入数值
     *
     * @param key   缓存key
     * @param value 缓存value
     * @param score 评分
     * @return true:成功 * false:失败
     */
    public boolean addZSet(String key, Object value, double score) {
        log.debug(" addZSet key :{},value:{}, score:{}", key, value, score);
        try {
            if (isEmpty(key) || isEmpty(value)) {
                return false;
            }
            return redisTemplate.opsForZSet().add(key, value, score);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 从有序集合中删除指定值
     *
     * @param key   缓存key
     * @param value 缓存value
     * @return true:成功 * false:失败
     */
    public boolean removeZSet(String key, Object value) {
        log.debug(" removeZSet key :{},value:{}", key, value);
        try {
            if (isEmpty(key) || isEmpty(value)) {
                return false;
            }
            redisTemplate.opsForZSet().remove(key, value);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * * 从有序集合中删除指定位置的值
     *
     * @param key   缓存key
     * @param start 起始位置
     * @param end   结束为止
     * @return true:成功 * false:失败
     */
    public boolean removeZSet(String key, long start, long end) {
        log.debug(" removeZSet key :{},start:{}, end:{}", key, start, end);
        try {
            if (isEmpty(key)) {
                return false;
            }
            redisTemplate.opsForZSet().removeRange(key, start, end);
            return true;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
    /**
     * 移除值为value的
     *
     * @param key    键
     * @param values 值 可以是多个
     * @return 移除的个数
     */
    public long setRemove(String key, Object... values) {
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            Long count = redisTemplate.opsForSet().remove(key, values);
            return count;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
    /**
     * * 从有序集合中获取指定位置的值
     *
     * @param key   缓存key
     * @param start 起始位置
     * @param end   结束为止
     * @return Set<Object>
     * 缓存中的set合集
     */
    public <T> Set<T> getZSet(String key, long start, long end) {
        log.debug(" getZSet key :{},start:{}, end:{}", key, start, end);
        try {
            if (isEmpty(key)) {
                return Collections.emptySet();
            }
            return (Set<T>) redisTemplate.opsForZSet().range(key, start, end);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return Collections.emptySet();
    }
 
 
    /**
     * 根据key获取Set中的所有值
     *
     * @param key 键
     * @return
     */
    public Set<Object> sGet(String key) {
        try {
            return redisTemplate.opsForSet().members(key);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
 
    /**
     * 根据value从一个set中查询,是否存在
     *
     * @param key   键
     * @param value 值
     * @return true 存在 false不存在
     */
    public boolean hasKeySet(String key, Object value) {
        try {
            if (isEmpty(key) || isEmpty(value)) {
                return false;
            }
            return redisTemplate.opsForSet().isMember(key, value);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return false;
    }
 
 
    /**
     * 获取set缓存的长度
     *
     * @param key 键
     * @return
     */
    public long getSetSize(String key) {
        try {
            if (isEmpty(key)) {
                return 0L;
            }
            return redisTemplate.opsForSet().size(key);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return 0L;
    }
 
 
    /**
     * 判断是否为空
     *
     * @param obj
     * @return
     */
    private boolean isEmpty(Object obj) {
        if (Objects.isNull(obj)) {
            return true;
        }
        if (obj instanceof String) {
            String str = obj.toString();
            if ("".equals(str.trim())) {
                return true;
            }
            return false;
        }
        if (obj instanceof List) {
            List<Object> list = (List<Object>) obj;
            if (CollectionUtils.isEmpty(list)) {
                return true;
            }
            return false;
        }
        if (obj instanceof Map) {
            Map map = (Map) obj;
            if (map.isEmpty()) {
                return true;
            }
            return false;
        }
        if (obj instanceof Set) {
            Set set = (Set) obj;
            if (CollectionUtils.isEmpty(set)) {
                return true;
            }
            return false;
        }
        if (obj instanceof Object[]) {
            Object[] objs = (Object[]) obj;
            if (objs.length <= 0) {
                return true;
            }
            return false;
        }
        return false;
    }
 
    /*      Set lock    */
 
    /**
     * 加锁
     * 参考:https://blog.csdn.net/qq_37892957/article/details/89322334
     *
     * @param key   seckillId
     * @param value 当前时间+超时时间
     * @return
     */
    public boolean lock(String key, String value) {
        // 可以设置返回true
        Boolean isLock = redisTemplate.opsForValue().setIfAbsent(key, value);
        if (isLock) {
            return true;
        }
        String currentValue = (String) redisTemplate.opsForValue().get(key);
        // 如果锁已经过期
        if (StringUtils.hasLength(currentValue)
                && Long.valueOf(currentValue) < System.currentTimeMillis()) {
            // 获取上一个锁的时间,并设置新锁的时间
            // 获取上一个锁的时间 如果高并发的情况可能会出现已经被修改的问题  所以多一次判断保证线程的安全
            String oldValue = (String) redisTemplate.opsForValue().getAndSet(key, value);
            if (StringUtils.hasLength(oldValue)
                    && oldValue.equals(currentValue)) {
                log.info("锁过期并返回true");
                return true;
            }
        }
        return false;
    }
 
    /**
     * 解锁
     *
     * @param key
     * @return
     */
    public void unlock(String key, String value) {
        try {
            String currentValue = (String) redisTemplate.opsForValue().get(key);
            if (StringUtils.hasLength(currentValue)
                    && currentValue.equals(value)) {
                redisTemplate.opsForValue().getOperations().delete(key);
            }
        } catch (Exception e) {
            log.error("redis分布式锁,解锁异常, {}", e.getMessage());
        }
 
    }
 
}