我一直坚持这个问题很长一段时间。我想使用redis模板从redis获取密钥。 我试过这个.redistemplate.keys(“*”); 但这不会取任何东西。即使使用该模式也无效。
请告知你最好的解决办法是什么。
答案 0 :(得分:16)
我刚刚巩固了答案,我们在这里看到了。
当我们使用RedisTemplate时,以下是从Redis获取密钥的两种方法。
<强> 1。直接来自RedisTemplate
Set<String> redisKeys = template.keys("samplekey*"));
// Store the keys in a List
List<String> keysList = new ArrayList<>();
Iterator<String> it = redisKeys.iterator();
while (it.hasNext()) {
String data = it.next();
keysList.add(data);
}
注意:您应该在bean中配置带有 StringRedisSerializer 的redisTemplate
如果您使用基于java的bean配置
redisTemplate.setDefaultSerializer(new StringRedisSerializer());
如果使用基于spring.xml的bean配置
<bean id="stringRedisSerializer" class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
<!-- redis template definition -->
<bean
id="redisTemplate"
class="org.springframework.data.redis.core.RedisTemplate"
p:connection-factory-ref="jedisConnectionFactory"
p:keySerializer-ref="stringRedisSerializer"
/>
<强> 2。来自JedisConnectionFactory
RedisConnection redisConnection = template.getConnectionFactory().getConnection();
Set<byte[]> redisKeys = redisConnection.keys("samplekey*".getBytes());
List<String> keysList = new ArrayList<>();
Iterator<byte[]> it = redisKeys.iterator();
while (it.hasNext()) {
byte[] data = (byte[]) it.next();
keysList.add(new String(data, 0, data.length));
}
redisConnection.close();
如果您未明确关闭此连接,则会遇到https://stackoverflow.com/a/36641934/3884173中所述的基础jedis连接池耗尽。
答案 1 :(得分:8)
尝试:
Set<byte[]> keys = RedisTemplate.getConnectionFactory().getConnection().keys("*".getBytes());
Iterator<byte[]> it = keys.iterator();
while(it.hasNext()){
byte[] data = (byte[])it.next();
System.out.println(new String(data, 0, data.length));
}
答案 2 :(得分:3)
尝试redisTemplate.setKeySerializer(new StringRedisSerializer());
答案 3 :(得分:2)
避免使用keys
命令。在大型数据库上执行时,可能会破坏性能。
您应该改用scan
命令。这是您的操作方法:
RedisConnection redisConnection = null;
try {
redisConnection = redisTemplate.getConnectionFactory().getConnection();
ScanOptions options = ScanOptions.scanOptions().match("myKey*").count(100).build();
Cursor c = redisConnection.scan(options);
while (c.hasNext()) {
logger.info(new String((byte[]) c.next()));
}
} finally {
redisConnection.close(); //Ensure closing this connection.
}
或者使用Redisson Redis Java客户端更简单:
Iterable<String> keysIterator = redisson.getKeys().getKeysByPattern("test*", 100);
for (String key : keysIterator) {
logger.info(key);
}
答案 4 :(得分:1)
确实有效,但似乎不推荐?因为我们不能在生产中使用Keys命令。我假设RedisTemplate.getConnectionFactory().getConnection().keys
正在调用redis Keys命令。有哪些替代方案?
答案 5 :(得分:1)
我使用的是redisTemplate.keys()
,但它无效。所以我使用了jedis,它起作用了。以下是我使用的代码。
Jedis jedis = new Jedis("localhost", 6379);
Set<String> keys = jedis.keys("*".getBytes());
for (String key : keys) {
// do something
} // for
答案 6 :(得分:0)
解决方案可以是这样的
String pattern = "abc"+"*";
Set<String> keys = jedis.keys(pattern);
for (String key : keys) {
jedis.keys(key);
}
或者您可以改为使用jedis.hscan()
和ScanParams
。
答案 7 :(得分:0)
试试
import org.springframework.data.redis.core.RedisTemplate;
import org.apache.commons.collections.CollectionUtils;
String key = "example*";
Set keys = redisTemplate.keys(key);
if (CollectionUtils.isEmpty(keys)) return null;
List list = redisTemplate.opsForValue().multiGet(keys);