您好,登錄后才能下訂單哦!
這篇文章主要講解了“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命令官方文檔
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這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。