我正试图从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);
}

最佳答案

添加密钥序列化程序。

template.setKeySerializer(new StringRedisSerializer());

10-05 21:21