溫馨提示×

溫馨提示×

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

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

spring redis怎么實(shí)現(xiàn)模糊查找key

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

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

spring redis 模糊查找key

用法

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

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

     * 任意多個(gè)字符

     ? 單個(gè)字符

     [] 括號內(nèi)的某1個(gè)字符

源碼

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

  • 基于游標(biāo)迭代分次遍歷key,不會一次性掃描所有key導(dǎo)致性能消耗過大,減少服務(wù)器阻塞

可以通過count參數(shù)設(shè)置掃描的范圍

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中用戶收聽歷史被清空");

后來測試發(fā)現(xiàn)模糊查詢是可以用的, 刪除改成

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

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

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI