您好,登錄后才能下訂單哦!
這篇文章主要講解了“spring redis怎么實(shí)現(xiàn)模糊查找key”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“spring redis怎么實(shí)現(xiàn)模糊查找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命令官方文檔
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)注!
免責(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)容。