中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring redis怎么實現模糊查找key

發布時間:2021-08-10 20:18:34 來源:億速云 閱讀:592 作者:chen 欄目:開發技術

這篇文章主要講解了“spring redis怎么實現模糊查找key”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“spring redis怎么實現模糊查找key”吧!

spring redis 模糊查找key

用法

Set<String> keySet = stringRedisTemplate.keys("keyprefix:"+"*");
  • 需要使用StringRedisTemplate,或自定義keySerializer為StringRedisSerializer的redisTemplate

  • redis里模糊查詢key允許使用的通配符:

     * 任意多個字符

     ? 單個字符

     [] 括號內的某1個字符

源碼

org.springframework.data.redis.core.RedisTemplate
public Set<K> keys(K pattern) {
 byte[] rawKey = rawKey(pattern);
 Set<byte[]> rawKeys = execute(connection -> connection.keys(rawKey), true);
 return keySerializer != null ? SerializationUtils.deserialize(rawKeys, keySerializer) : (Set<K>) rawKeys;
}

改善

  • Redis2.8以后可以使用scan獲取key

  • 基于游標迭代分次遍歷key,不會一次性掃描所有key導致性能消耗過大,減少服務器阻塞

可以通過count參數設置掃描的范圍

Set<String> keys = new LinkedHashSet<>();
stringRedisTemplate.execute((RedisConnection connection) -> {
    try (Cursor<byte[]> cursor = connection.scan(
            ScanOptions.scanOptions()
                    .count(Long.MAX_VALUE)
                    .match(pattern)
                    .build()
    )) {
        cursor.forEachRemaining(item -> {
            keys.add(RedisSerializer.string().deserialize(item));
        });
        return null;
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
});

Reids SCAN命令官方文檔

redis-redisTemplate模糊匹配刪除

 String key = "noteUserListenedPoi:*";
            redisTemplate.delete(key);
            LOGGER.info("redis中用戶收聽歷史被清空");

后來測試發現模糊查詢是可以用的, 刪除改成

Set<String> keys = redisTemplate.keys("noteUserListenedPoi:" + "*");
            redisTemplate.delete(keys);
            LOGGER.info("{}, redis中用戶收聽歷史被清空"

感謝各位的閱讀,以上就是“spring redis怎么實現模糊查找key”的內容了,經過本文的學習后,相信大家對spring redis怎么實現模糊查找key這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汨罗市| 麦盖提县| 琼中| 揭阳市| 景谷| 收藏| 岳西县| 平果县| 绥棱县| 永春县| 娱乐| 南汇区| 云林县| 从化市| 开原市| 康定县| 肇源县| 常宁市| 林芝县| 丰镇市| 苍梧县| 措美县| 棋牌| 林甸县| 莱西市| 简阳市| 隆化县| 建水县| 黄大仙区| 苗栗县| 汉沽区| 武宁县| 新野县| 同江市| 徐水县| 叶城县| 清水县| 洛宁县| 象山县| 三穗县| 丹阳市|