我正在尝试从Redis获取密钥列表,但是它不起作用。
@Autowired
org.springframework.data.redis.core.RedisTemplate redisTemplate;
redisTemplate.opsForValue().set("test","test");
redisTemplate.opsForValue().set("t:test","test");
redisTemplate.opsForValue().set("t::test1","test");
redisTemplate.opsForValue().set("t1.t2::test2","test");
Set<String> keys = redisTemplate.keys("t*");
我为键“ *”,“ t:*”,“ t :: *”尝试了不同的模式。什么都没有。 仅当我输入完整的密钥名称时,它才有效。
创建bean代码:
@Bean
RedisTemplate<String,Object> redisTemplate(@Autowired JedisConnectionFactory jedisConnectionFactory){
RedisTemplate<String,Object> template=new RedisTemplate<>();
template.setConnectionFactory(jedisConnectionFactory);
return template;
}
@Bean
JedisConnectionFactory jedisConnectionFactory(@Value("${redis.host:192.168.99.100}") String host, @Value("${redis.port:6379}") int port, @Value("${redis.password:}") String password){
RedisStandaloneConfiguration redisStandaloneConfiguration = new RedisStandaloneConfiguration(host, port);
redisStandaloneConfiguration.setPassword(RedisPassword.of(password));
return new JedisConnectionFactory(redisStandaloneConfiguration);
}
答案 0 :(得分:0)
添加密钥序列化器。
template.setKeySerializer(new StringRedisSerializer());