可爱静

记录生活、学习和工作

0%

Redis工具类封装

摘要

  • 该工具类是大佬在20年编写的
  • 我在使用过程中发现少了hMGet方法
  • 所以就照葫芦画瓢,写了hMGet方法
  • 不使用RedisTemplate封装的方法是因为不想用(大佬说有bug)
  • 自己封装,用起来岂不是更牛逼?

难点

  • 序列化

    代码

    1. RedisCacheServiceI

    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
    import com.weliner.business.config.domain.Search;
    import com.weliner.business.config.utils.SortTypeEnum;
    import org.springframework.data.redis.connection.RedisZSetCommands;

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.TimeUnit;

    /**
    * @author ****.coding@gmail.com
    * @date 2020-08-31
    **/
    public interface RedisCacheServiceI {

    /**
    * 查找所有符合给定模式 pattern 的 key , 比如说:
    * KEYS * 匹配数据库中所有 key 。
    * KEYS h?llo 匹配 hello , hallo 和 hxllo 等。
    * KEYS h*llo 匹配 hllo 和 heeeeello 等。
    * KEYS h[ae]llo 匹配 hello 和 hallo ,但不匹配 hillo 。
    * 特殊符号用 \ 隔开。
    * {@link = http://redisdoc.com/database/keys.html}
    * 可用版本: >= 1.0.0
    * 时间复杂度: O(N), N 为数据库中 key 的数量。
    *
    * @param pattern
    * @return
    */
    Set<String> keys(String pattern);

    /**
    * 检查key是否存在
    * {@link = http://redisdoc.com/database/exists.html}
    * 可用版本: >= 1.0.0
    * 时间复杂度: O(1)
    *
    * @param key
    * @return
    */
    Boolean exists(String key);

    /**
    * 设置过期时间
    * @param redisKey
    * @param expire
    * @param timeUnit
    * @return
    */
    Boolean expire(String redisKey, long expire, TimeUnit timeUnit);

    /**
    * 设置过期的字符串
    *
    * @param key
    * @param value
    * @param timeout
    * @return
    */
    Boolean setStr(String key, String value, Long timeout);

    /**
    * 设置value自增数量
    * @param key
    * @return
    */
    Long increment(String key);

    /**
    * 设置不过期的字符串
    *
    * @param key
    * @param value
    * @return
    */
    Boolean setStr(String key, String value);


    /**
    * 获取字符串key的value
    *
    * @param key
    * @return
    */
    String getStr(String key);

    /**
    * 获取字符串key的value
    * @param key
    * @param clazz
    * @param <T>
    * @return
    */
    <T> T getStr(String key, Class<T> clazz);

    /**
    *
    * @param list
    * @param clazz
    * @param <T>
    * @param <R>
    * @return
    */
    <T, R> List<T> mGet(List<R> list, Class<T> clazz);

    /**
    * 根据key删除缓存
    *
    * @param key
    * @return
    */
    Long del(String key);

    /**
    * 判断member是否在set中
    *
    * @param key
    * @param value
    * @return
    */
    Boolean sIsMember(String key, String value);

    /**
    * 获取set 中的元素
    *
    * @param key
    * @return
    */
    Long sCard(String key);

    /**
    * set 新增value
    *
    * @param key
    * @param values
    * @return
    */
    Boolean sAdd(String key, String values);

    /**
    * set 移除value
    *
    * @param key
    * @param values
    * @return
    */
    Boolean sRem(String key, String values);

    /**
    * hmSet
    *
    * @param key
    * @param m
    */
    void hSet(String key, Map m);

    Boolean hSet(final String key, final String field, final String value);

    Boolean hExists(final String key, final String field);

    <T> T hGet(String key, String hashKey, Class<T> clazz);

    /**
    * hget
    *
    * @param key
    * @param hashKey
    * @return
    */
    Object hGet(String key, String hashKey);

    /**
    * 批量获取HASH
    * @Author HiF
    * @Date 2021/6/25 16:38
    * @return
    */
    <T> List<T> hMGet(String key, List<String> fields, Class<T> clazz);

    Boolean zAdd(final String key, final double score, final String value);

    Long zAdd(final String key, Set<RedisZSetCommands.Tuple> tuples);

    Double zScore(final String key, final String value);

    Double zIncrBy(final String key, final double increment, final String value);

    Long zCard(final String key);

    Long zCount(final String key, final RedisZSetCommands.Range range);

    <T> Set<T> zRange(final String key, final long start, final long end, Class<T> clazz);

    Set<byte[]> zRange(final String key, final long start, final long end);

    Set<byte[]> zRevRange(final String key, final long start, final long end);

    Set<byte[]> zRangeByScore(final String key, final double min, final double max);

    Set<RedisZSetCommands.Tuple> zRangeWithScores(final String key, final long start, final long end);

    Set<RedisZSetCommands.Tuple> zRevRangeWithScores(final String key, final long start, final long end);

    Set<byte[]> zRevRangeByScore(final String key, final double min, final double max);

    Set<byte[]> zRevRangeByScore(final String key, final double min, final double max, long offset, long count);

    Set<RedisZSetCommands.Tuple> zRangeWithScores(final String key, final double min, final double max, long offset, long count);

    Long zRank(final String key, final String value);

    Long zRevRank(final String key, final double score, final String value);

    Long zRem(final String key, final String value);

    Long zMRem(final String key, final List<String> fields);

    Long zRemRangeByScore(final String key, final RedisZSetCommands.Range range);

    Set<byte[]> zRangeByLex(final String key, final RedisZSetCommands.Range range);

    Long zUnionStore(final String destKey, List<String> sets);

    Long zInterStore(final String destKey, final byte[]... sets);

    <T> Search zSetSearchPage(String key, SortTypeEnum sortTypeEnum, int pageSize, int pageIndex, Class<T> clazz);
    }

    2. RedisCacheServiceImpl

    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
    import com.google.gson.Gson;
    import com.google.gson.GsonBuilder;
    import com.weliner.business.config.domain.Search;
    import com.weliner.business.config.manager.RedisCacheServiceI;
    import com.weliner.business.config.utils.JsonTool;
    import com.weliner.business.config.utils.SortTypeEnum;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.dao.DataAccessException;
    import org.springframework.data.redis.connection.RedisConnection;
    import org.springframework.data.redis.connection.RedisZSetCommands;
    import org.springframework.data.redis.core.RedisCallback;
    import org.springframework.data.redis.core.RedisTemplate;
    import org.springframework.data.redis.core.TimeoutUtils;
    import org.springframework.data.redis.serializer.RedisSerializer;
    import org.springframework.stereotype.Service;
    import org.springframework.util.Assert;

    import java.util.*;
    import java.util.concurrent.TimeUnit;
    import java.util.stream.Collectors;


    /**
    * @author ****.coding@gmail.com
    **/
    @Service
    @Slf4j
    public class RedisCacheServiceImpl implements RedisCacheServiceI {

    @Autowired
    RedisTemplate redisTemplate;

    @Override
    public Set<String> keys(String pattern) {
    return (Set<String>) redisTemplate.execute((RedisCallback<Set<String>>) connection -> {
    RedisSerializer<String> stringRedisSerializer = redisTemplate.getStringSerializer();
    Set<byte[]> sets = connection.keys(stringRedisSerializer.serialize(pattern));
    Set<String> keys = new LinkedHashSet<>();
    if (null == sets) {
    return keys;
    }
    sets.forEach(item -> keys.add(stringRedisSerializer.deserialize(item)));
    return keys;
    });
    }

    @Override
    public Boolean exists(String key) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer<String> stringRedisSerializer = redisTemplate.getStringSerializer();
    return connection.exists(stringRedisSerializer.serialize(key));
    });
    }

    @Override
    public Boolean expire(String redisKey, long expire, TimeUnit timeUnit) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer<String> stringRedisSerializer = redisTemplate.getStringSerializer();
    long rawTimeout = TimeoutUtils.toMillis(expire, timeUnit);
    return connection.pExpire(stringRedisSerializer.serialize(redisKey), rawTimeout);
    });
    }

    @Override
    public Boolean setStr(String key, String value, Long timeout) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer stringSerializer = redisTemplate.getStringSerializer();
    return connection.setEx(
    stringSerializer.serialize(key),
    timeout,
    stringSerializer.serialize(value));
    });
    }

    @Override
    public Long increment(String key) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringSerializer = redisTemplate.getStringSerializer();
    return connection.incr(stringSerializer.serialize(key));
    });
    }


    @Override
    public Boolean setStr(String key, String value) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer stringSerializer = redisTemplate.getStringSerializer();
    return connection.set(
    stringSerializer.serialize(key),
    stringSerializer.serialize(value));
    });
    }

    @Override
    public String getStr(String key) {
    return (String) redisTemplate.execute((RedisCallback<String>) connection -> {
    RedisSerializer stringSerializer = redisTemplate.getStringSerializer();
    byte[] value = connection.get(
    stringSerializer.serialize(key));
    return (String) stringSerializer.deserialize(value);
    });
    }

    @Override
    public <T> T getStr(String key, Class<T> clazz) {
    return (T) redisTemplate.execute((RedisCallback<T>) connection -> {
    RedisSerializer<String> stringRedisSerializer = redisTemplate.getStringSerializer();
    byte[] bytes = connection.get(stringRedisSerializer.serialize(key));
    if (null == bytes) {
    return null;
    }
    String json = stringRedisSerializer.deserialize(bytes);
    if (null == json) {
    return null;
    }
    Gson gson = new Gson();
    return gson.fromJson(json, clazz);
    });
    }

    @Override
    public <T, R> List<T> mGet(List<R> list, Class<T> clazz) {
    return (List<T>) redisTemplate.execute((RedisCallback<List<T>>) connection -> {
    byte[][] bkeys = new byte[list.size()][];
    for (int i = 0; i < list.size(); i++) {
    bkeys[i] = list.get(i).toString().getBytes();
    }
    RedisSerializer<String> stringRedisSerializer = redisTemplate.getStringSerializer();
    List<byte[]> byteList = connection.mGet(bkeys);
    List<T> result = new ArrayList<>();
    Gson gson = new Gson();
    for (int i = 0; i < byteList.size(); i++) {
    result.add(gson.fromJson(stringRedisSerializer.deserialize(byteList.get(i)), clazz));
    }
    return result;

    });
    }


    @Override
    public Long del(String key) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringSerializer = redisTemplate.getStringSerializer();
    return connection.del(
    stringSerializer.serialize(key));
    });
    }

    @Override
    public Boolean sIsMember(String key, String value) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer stringRedisSerializer = redisTemplate.getStringSerializer();
    return connection.sIsMember(stringRedisSerializer.serialize(key),
    stringRedisSerializer.serialize(value));
    });
    }

    @Override
    public Long sCard(String key) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringRedisSerializer = redisTemplate.getStringSerializer();
    return connection.sCard(stringRedisSerializer.serialize(key));
    });
    }

    @Override
    public Boolean sAdd(String key, String values) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer stringRedisSerializer = redisTemplate.getStringSerializer();
    Long result = connection.sAdd(stringRedisSerializer.serialize(key), stringRedisSerializer.serialize(values));
    if (null == result || result == 0) {
    return false;
    }
    return true;
    });
    }

    @Override
    public Boolean sRem(String key, String values) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer stringRedisSerializer = redisTemplate.getStringSerializer();
    Long result = connection.sRem(stringRedisSerializer.serialize(key), stringRedisSerializer.serialize(values));
    if (null == result || result == 0) {
    return false;
    }
    return true;
    });
    }

    @Override
    public void hSet(String key, Map map) {
    redisTemplate.execute((RedisCallback) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    Iterator<Map.Entry<String, Object>> iterator = map.entrySet().iterator();
    String mapKey;
    Object value;
    Map<byte[], byte[]> hashes = new LinkedHashMap(map.size());
    while (iterator.hasNext()) {
    Map.Entry<String, Object> entry = iterator.next();
    mapKey = entry.getKey();
    value = entry.getValue();
    hashes.put(stringRedisSerializer.serialize(mapKey),
    stringRedisSerializer.serialize(JsonTool.toString(value)));
    }
    connection.hMSet(stringRedisSerializer.serialize(key),
    hashes
    );
    return null;
    });
    }

    @Override
    public Object hGet(String key, String hashKey) {
    return redisTemplate.execute((RedisCallback) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] bytes = connection.hGet(stringRedisSerializer.serialize(key),
    stringRedisSerializer.serialize(hashKey));
    if (null == bytes) {
    return null;
    }
    return stringRedisSerializer.deserialize(bytes);
    });
    }

    @Override
    public <T> List<T> hMGet(String key, List<String> fields, Class<T> clazz) {
    return (List<T>) redisTemplate.execute((RedisCallback<List<T>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[][] bkeys = new byte[fields.size()][];
    for (int i = 0; i < fields.size(); i++) {
    bkeys[i] = fields.get(i).toString().getBytes();
    }
    byte[] keys = stringRedisSerializer.serialize(key);
    List<byte[]> listByte = connection.hMGet(keys, bkeys);
    List<T> result = new ArrayList<>();
    Gson gson = new Gson();
    for (int i = 0; i < listByte.size(); i++) {
    result.add(gson.fromJson(stringRedisSerializer.deserialize(listByte.get(i)), clazz));
    }
    return result;
    });
    }


    /**
    * 可用版本: >= 2.0.0
    * 时间复杂度: O(1)
    * 将哈希表 hash 中域 field 的值设置为 value 。
    * 如果给定的哈希表并不存在, 那么一个新的哈希表将被创建并执行 HSET 操作。
    * 如果域 field 已经存在于哈希表中, 那么它的旧值将被新值 value 覆盖。
    *
    * @param key
    * @param field
    * @param value
    * @return Boolean
    * @Title: hSet
    */
    @Override
    public Boolean hSet(final String key, final String field, final String value) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keys = stringRedisSerializer.serialize(key);
    byte[] fields = stringRedisSerializer.serialize(field);
    byte[] values = stringRedisSerializer.serialize(value);
    return connection.hSet(keys, fields, values);
    });
    }


    @Override
    public Boolean hExists(final String key, final String field) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keys = stringRedisSerializer.serialize(key);
    byte[] fields = stringRedisSerializer.serialize(field);
    return connection.hExists(keys, fields);
    });
    }

    @Override
    public <T> T hGet(String key, String hashKey, Class<T> clazz) {
    return (T) redisTemplate.execute((RedisCallback<T>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] bytes = connection.hGet(stringRedisSerializer.serialize(key),
    stringRedisSerializer.serialize(hashKey));
    String json = stringRedisSerializer.deserialize(bytes);
    if (null == json) {
    return null;
    }
    Gson gson = new Gson();
    return gson.fromJson(json, clazz);
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(M*log(N)), N 是有序集的基数, M 为成功添加的新成员的数量。 将一个或多个 member
    * 元素及其 score 值加入到有序集 key 当中。 如果某个 member 已经是有序集的成员,那么更新这个 member 的 score
    * 值,并通过重新插入这个 member 元素,来保证该 member 在正确的位置上。 score 值可以是整数值或双精度浮点数。 如果 key
    * 不存在,则创建一个空的有序集并执行 ZADD 操作。 当 key 存在但不是有序集类型时,返回一个错误。
    *
    * @param key
    * @param score
    * @param value
    * @return
    */
    @Override
    public Boolean zAdd(final String key, final double score, final String value) {
    return (Boolean) redisTemplate.execute((RedisCallback<Boolean>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    byte[] valueByte = stringRedisSerializer.serialize(value);
    Boolean zAdd = connection.zAdd(keyByte, score, valueByte);
    if (zAdd == false) {
    // 兼容value、score相同的情况也会返回false
    Double zScore = connection.zScore(keyByte, valueByte);
    if (null != zScore) {
    return true;
    }
    }
    return zAdd;
    });
    }

    @Override
    public Long zAdd(final String key, Set<RedisZSetCommands.Tuple> tuples) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zAdd(keyByte, tuples);
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(1) 返回有序集 key 中,成员 member 的 score 值。 如果 member 元素不是有序集
    * key 的成员,或 key 不存在,返回 nil 。
    *
    * @param key
    * @param value
    * @return
    */
    @Override
    public Double zScore(final String key, final String value) {
    return (Double) redisTemplate.execute((RedisCallback<Double>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    byte[] valueByte = stringRedisSerializer.serialize(value);
    return connection.zScore(keyByte, valueByte);
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(log(N)) 为有序集 key 的成员 member 的 score 值加上增量 increment 。
    * 可以通过传递一个负数值 increment ,让 score 减去相应的值,比如 ZINCRBY key -5 member ,就是让 member 的
    * score 值减去 5 。 当 key 不存在,或 member 不是 key 的成员时, ZINCRBY key increment member
    * 等同于 ZADD key increment member 。 当 key 不是有序集类型时,返回一个错误。 score 值可以是整数值或双精度浮点数。
    *
    * @param key
    * @param increment
    * @param value
    * @return
    */
    @Override
    public Double zIncrBy(final String key, final double increment, final String value) {
    return (Double) redisTemplate.execute((RedisCallback<Double>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    byte[] valueByte = stringRedisSerializer.serialize(value);
    return connection.zIncrBy(keyByte, increment, valueByte);
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(1) 返回有序集 key 的基数。
    *
    * @param key
    * @return
    */
    @Override
    public Long zCard(final String key) {
    return (Long) redisTemplate.execute(new RedisCallback<Long>() {
    @Override
    public Long doInRedis(RedisConnection connection) throws DataAccessException {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zCard(keyByte);
    }
    });
    }

    /**
    * 可用版本: >= 2.0.0 时间复杂度: O(log(N)), N 为有序集的基数。 返回有序集 key 中, score 值在 min 和 max
    * 之间(默认包括 score 值等于 min 或 max )的成员的数量。
    *
    * @param key
    * @param range
    * @return
    */
    @Override
    public Long zCount(final String key, final RedisZSetCommands.Range range) {
    return (Long) redisTemplate.execute(new RedisCallback<Long>() {
    @Override
    public Long doInRedis(RedisConnection connection) throws DataAccessException {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zCount(keyByte, range);
    }
    });
    }

    @Override
    public <T> Set<T> zRange(final String key, final long start, final long end, Class<T> clazz) {
    return (Set<T>) redisTemplate.execute((RedisCallback<Set<T>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    Set<byte[]> bytes = connection.zRange(keyByte, start, end);
    Set<T> set = new HashSet<>(bytes.size());
    if (null != bytes) {
    Gson gson = new GsonBuilder().disableHtmlEscaping().create();
    for (byte[] b : bytes) {
    Object value = stringRedisSerializer.deserialize(b);
    if (null != value) {
    set.add(gson.fromJson(value.toString(), clazz));
    }
    }
    }
    return set;
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(log(N)+M), N 为有序集的基数,而 M 为结果集的基数。 返回有序集 key
    * 中,指定区间内的成员。 其中成员的位置按 score 值递增(从小到大)来排序。 具有相同 score 值的成员按字典序(lexicographical
    * order )来排列。
    *
    * @param key
    * @param start
    * @param end
    * @return
    */
    @Override
    public Set<byte[]> zRange(final String key, final long start, final long end) {
    return (Set<byte[]>) redisTemplate.execute((RedisCallback<Set<byte[]>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRange(keyByte, start, end);
    });
    }


    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(log(N)+M), N 为有序集的基数,而 M 为结果集的基数。 返回有序集 key
    * 中,指定区间内的成员。 其中成员的位置按 score 值递减(从大到小)来排列。 具有相同 score 值的成员按字典序的逆序(reverse
    * lexicographical order)排列。 除了成员按 score 值递减的次序排列这一点外, ZREVRANGE 命令的其他方面和 ZRANGE
    * key start stop [WITHSCORES] 命令一样。
    *
    * @param key
    * @param start
    * @param end
    * @return
    */
    @Override
    public Set<byte[]> zRevRange(final String key, final long start, final long end) {
    return (Set<byte[]>) redisTemplate.execute((RedisCallback<Set<byte[]>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRevRange(keyByte, start, end);
    });
    }

    /**
    * 可用版本: >= 1.0.5 时间复杂度: O(log(N)+M), N 为有序集的基数, M 为被结果集的基数。 返回有序集 key 中,所有
    * score 值介于 min 和 max 之间(包括等于 min 或 max )的成员。有序集成员按 score 值递增(从小到大)次序排列。 具有相同
    * score 值的成员按字典序(lexicographical order)来排列(该属性是有序集提供的,不需要额外的计算)。
    *
    * @param key
    * @param min
    * @param max
    * @return
    */
    @Override
    public Set<byte[]> zRangeByScore(final String key, final double min, final double max) {
    return (Set<byte[]>) redisTemplate.execute((RedisCallback<Set<byte[]>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRangeByScore(keyByte, min, max);
    });
    }

    /**
    * 根据索引区间获取元素
    * score 值递增(从小到大)
    *
    * @param key
    * @param start
    * @param end
    * @return
    */
    @Override
    public Set<RedisZSetCommands.Tuple> zRangeWithScores(final String key, final long start, final long end) {
    return (Set<RedisZSetCommands.Tuple>) redisTemplate.execute((RedisCallback<Set<RedisZSetCommands.Tuple>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRangeWithScores(keyByte, start, end);
    });
    }

    /**
    * 根据索引区间获取元素
    * score 值递增(从大到小)
    *
    * @param key
    * @param start
    * @param end
    * @return
    */
    @Override
    public Set<RedisZSetCommands.Tuple> zRevRangeWithScores(final String key, final long start, final long end) {
    return (Set<RedisZSetCommands.Tuple>) redisTemplate.execute((RedisCallback<Set<RedisZSetCommands.Tuple>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRevRangeWithScores(keyByte, start, end);
    });
    }

    /**
    * 可用版本: >= 2.2.0 时间复杂度: O(log(N)+M), N 为有序集的基数, M 为结果集的基数。 返回有序集 key 中, score
    * 值介于 max 和 min 之间(默认包括等于 max 或 min )的所有的成员。有序集成员按 score 值递减(从大到小)的次序排列。 具有相同
    * score 值的成员按字典序的逆序(reverse lexicographical order )排列。 除了成员按 score
    * 值递减的次序排列这一点外, ZREVRANGEBYSCORE 命令的其他方面和 ZRANGEBYSCORE key min max
    * [WITHSCORES] [LIMIT offset count] 命令一样。
    *
    * @param key
    * @param min
    * @param max
    * @return
    */
    @Override
    public Set<byte[]> zRevRangeByScore(final String key, final double min, final double max) {
    return (Set<byte[]>) redisTemplate.execute((RedisCallback<Set<byte[]>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRevRangeByScore(keyByte, min, max);
    });
    }

    /**
    * 可用版本: >= 2.2.0 时间复杂度: O(log(N)+M), N 为有序集的基数, M 为结果集的基数。 返回有序集 key 中, score
    * 值介于 max 和 min 之间(默认包括等于 max 或 min )的所有的成员。有序集成员按 score 值递减(从大到小)的次序排列。 具有相同
    * score 值的成员按字典序的逆序(reverse lexicographical order )排列。 除了成员按 score
    * 值递减的次序排列这一点外, ZREVRANGEBYSCORE 命令的其他方面和 ZRANGEBYSCORE key min max
    * [WITHSCORES] [LIMIT offset count] 命令一样。
    *
    * @param key
    * @param min
    * @param max
    * @return
    */
    @Override
    public Set<byte[]> zRevRangeByScore(final String key, final double min, final double max, long offset, long count) {
    return (Set<byte[]>) redisTemplate.execute((RedisCallback<Set<byte[]>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRevRangeByScore(keyByte, min, max, offset, count);
    });
    }

    @Override
    public Set<RedisZSetCommands.Tuple> zRangeWithScores(final String key, final double min, final double max, long offset, long count) {
    return (Set<RedisZSetCommands.Tuple>) redisTemplate.execute((RedisCallback<Set<RedisZSetCommands.Tuple>>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRangeByScoreWithScores(keyByte, min, max, offset, count);
    });
    }

    /**
    * 可用版本: >= 2.0.0 时间复杂度: O(log(N)) 返回有序集 key 中成员 member 的排名。其中有序集成员按 score
    * 值递增(从小到大)顺序排列。 排名以 0 为底,也就是说, score 值最小的成员排名为 0 。 使用 ZREVRANK key member
    * 命令可以获得成员按 score 值递减(从大到小)排列的排名。
    *
    * @param key
    * @param value
    * @return
    */
    @Override
    public Long zRank(final String key, final String value) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    byte[] valueByte = stringRedisSerializer.serialize(value);
    return connection.zRank(keyByte, valueByte);
    });
    }

    /**
    * 可用版本: >= 2.0.0 时间复杂度: O(log(N)) 返回有序集 key 中成员 member 的排名。其中有序集成员按 score
    * 值递减(从大到小)排序。 排名以 0 为底,也就是说, score 值最大的成员排名为 0 。 使用 ZRANK key member 命令可以获得成员按
    * score 值递增(从小到大)排列的排名。
    *
    * @param key
    * @param score
    * @param value
    * @return
    */
    @Override
    public Long zRevRank(final String key, final double score, final String value) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer<String> stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    byte[] valueByte = stringRedisSerializer.serialize(value);
    return connection.zRevRank(keyByte, valueByte);
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(M*log(N)), N 为有序集的基数, M 为被成功移除的成员的数量。 移除有序集 key
    * 中的一个或多个成员,不存在的成员将被忽略。 当 key 存在但不是有序集类型时,返回一个错误。
    *
    * @param key
    * @param value
    * @return
    */
    @Override
    public Long zRem(final String key, final String value) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    byte[] valueByte = stringRedisSerializer.serialize(value);
    return connection.zRem(keyByte, valueByte);
    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(M*log(N)), N 为有序集的基数, M 为被成功移除的成员的数量。 移除有序集 key
    * 中的一个或多个成员,不存在的成员将被忽略。 当 key 存在但不是有序集类型时,返回一个错误。
    *
    * @param key
    * @param fields 删除多数据
    * @return
    */
    @Override
    public Long zMRem(final String key, final List<String> fields) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keys = stringRedisSerializer.serialize(key);
    List<byte[]> values = new ArrayList<>(fields.size());
    for (String field : fields) {
    byte[] value = stringRedisSerializer.serialize(field);
    values.add(value);
    }
    byte[][] valueArr = new byte[values.size()][];
    return connection.zRem(keys,
    values.toArray(valueArr));

    });
    }

    /**
    * 可用版本: >= 1.2.0 时间复杂度: O(log(N)+M), N 为有序集的基数,而 M 为被移除成员的数量。 移除有序集 key 中,所有
    * score 值介于 min 和 max 之间(包括等于 min 或 max )的成员。 自版本2.1.6开始, score 值等于 min 或 max
    * 的成员也可以不包括在内,详情请参见 ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count]
    * 命令。
    *
    * @param key
    * @param range
    * @return
    */
    @Override
    public Long zRemRangeByScore(final String key, final RedisZSetCommands.Range range) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRemRangeByScore(keyByte, range);
    });
    }

    /**
    * 可用版本: >= 2.8.9 时间复杂度:O(log(N)+M), 其中 N 为有序集合的元素数量, 而 M 则是命令返回的元素数量。 如果 M
    * 是一个常数(比如说,用户总是使用 LIMIT 参数来返回最先的 10 个元素), 那么命令的复杂度也可以看作是 O(log(N)) 。
    * 当有序集合的所有成员都具有相同的分值时, 有序集合的元素会根据成员的字典序(lexicographical ordering)来进行排序,
    * 而这个命令则可以返回给定的有序集合键 key 中, 值介于 min 和 max 之间的成员。 如果有序集合里面的成员带有不同的分值,
    * 那么命令返回的结果是未指定的(unspecified)。
    *
    * @param key
    * @param range
    * @return
    */
    @Override
    public Set<byte[]> zRangeByLex(final String key, final RedisZSetCommands.Range range) {
    return (Set<byte[]>) redisTemplate.execute((RedisCallback<Set<byte[]>>) connection -> {
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] keyByte = stringRedisSerializer.serialize(key);
    return connection.zRangeByLex(keyByte, range);
    });
    }

    /**
    * 可用版本:>= 2.0.0 时间复杂度: O(N)+O(M log(M)), N 为给定有序集基数的总和, M 为结果集的基数。
    * 计算给定的一个或多个有序集的并集,其中给定 key 的数量必须以 numkeys 参数指定,并将该并集(结果集)储存到 destination 。
    * 默认情况下,结果集中某个成员的 score 值是所有给定集下该成员 score 值之 和 。
    *
    * @param destKey
    * @param sets
    * @return
    */
    @Override
    public Long zUnionStore(final String destKey, List<String> sets) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] destKeyByte = stringRedisSerializer.serialize(destKey);
    byte[][] arr = new byte[sets.size()][];
    return connection.zUnionStore(destKeyByte, sets.parallelStream()
    .map(val -> stringRedisSerializer.serialize(val)).collect(Collectors.toList()).toArray(arr));
    });
    }

    /**
    * 可用版本: >= 2.0.0 时间复杂度: O(N*K)+O(M*log(M)), N 为给定 key 中基数最小的有序集, K 为给定有序集的数量, M
    * 为结果集的基数。 计算给定的一个或多个有序集的交集,其中给定 key 的数量必须以 numkeys 参数指定,并将该交集(结果集)储存到
    * destination 。 默认情况下,结果集中某个成员的 score 值是所有给定集下该成员 score 值之和.
    *
    * @param destKey
    * @param sets
    * @return
    */
    @Override
    public Long zInterStore(final String destKey, final byte[]... sets) {
    return (Long) redisTemplate.execute((RedisCallback<Long>) connection -> {
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    byte[] destKeyByte = stringRedisSerializer.serialize(destKey);
    return connection.zInterStore(destKeyByte, sets);
    });
    }

    /**
    * zset分页方法
    *
    * @param key 缓存key
    * @param sortTypeEnum 排序方式
    * @param pageSize 分页大小
    * @param pageIndex 页码
    * @param clazz 元素类型
    * @return
    */
    @Override
    public <T> Search zSetSearchPage(String key, SortTypeEnum sortTypeEnum, int pageSize, int pageIndex, Class<T> clazz) {
    Search search = new Search();
    search.setPageIndex(pageIndex);
    search.setPageSize(pageSize);
    search.buildPage();
    if (pageSize == 0) {
    return search;
    }
    RedisSerializer stringRedisSerializer
    = redisTemplate.getStringSerializer();
    Gson gson = new Gson();
    // 获取总条数
    Long totalCount = zCount(key, RedisZSetCommands.Range.unbounded());
    // 总页数
    Long totalPageCount = totalCount / pageSize;
    Long pageNum = (totalCount % pageSize) == 0 ? totalPageCount : totalPageCount + 1;
    // 判断是否需要去执行,当总页数<取数页时不需要去执行
    if (pageNum >= pageIndex) {
    int offset = search.getOffset();
    // 与数据库不同,redis从0开始,第二个参数是结束的下标
    int endIndex = offset + search.getPageSize() - 1;
    Set<byte[]> zSetRange = null;
    if (sortTypeEnum == SortTypeEnum.DESC) {
    zSetRange = zRevRange(key, offset, endIndex);
    } else {
    zSetRange = zRange(key, offset, endIndex);
    }
    Set<T> list = new HashSet<>();
    list = (Set<T>) Optional.ofNullable(zSetRange).orElseGet(() -> Collections.emptySet()
    ).stream().filter(Objects::nonNull).map(i -> {
    return gson.fromJson((String) stringRedisSerializer.deserialize(i), clazz);
    }).collect(Collectors.toList());
    search.setTotal(totalCount.intValue());
    search.setResult(Arrays.asList(list));
    }
    return search;
    }

    }