使用 RedisTemplate 从 Redis 获取 Set 值总之解释

2022-09-02 20:08:43

我能够从使用中检索值:RedisJedis

public static void main(String[] args) {
        Jedis jedis = new Jedis(HOST, PORT);
        jedis.connect();
        Set<String> set = jedis.smembers(KEY);
        for (String s : set) {
            System.out.println(s);
        }
        jedis.disconnect();
        jedis.close();
    }

但是当我尝试使用Spring's时,我没有得到任何数据。我的数据存储在 .RedisTemplateRedisSet

      // inject the actual template 
      @Autowired
      private RedisTemplate<String, Object> template;

      // inject the template as SetOperations
      @Resource(name="redisTemplate")
      private SetOperations<String,String> setOps;

public String logHome() {       
        Set<String> set =  setOps.members(KEY);
        for(String str:set){
            System.out.println(str); //EMPTY
        }       
        Set<byte[]> keys = template.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)); //KEYS are printed.
        }
        Set<Object> mySet = template.boundSetOps(KEY).members();        
        System.out.println(mySet); //EMPTY      
        return "";
    }

有人可以向我指出我错过了什么吗?

编辑:我的 RedisTemplate 的 xml 配置。

 <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate"
    p:connection-factory-ref="jedisConnectionFactory"/>

     <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
        p:host-name="myhostname" p:port="6379" />

答案 1

总之

您必须配置序列化程序。

解释

Redis 模板对键、值和哈希键/值使用序列化程序。序列化程序用于将 Java 输入转换为存储在 Redis 中的表示形式。如果未配置任何内容,则序列化程序默认为 。因此,如果您在Java代码中要求输入密钥,则序列化程序会将其转换为JdkSerializationRedisSerializerkey

"\xac\xed\x00\x05t\x00\x03key"

Spring Data Redis使用这些字节作为查询Redis的键。

您可以使用Spring Data Redis添加数据,并使用以下内容进行查询:redis-cli

template.boundSetOps("myKey").add(new Date());

,然后在redis-cli

127.0.0.1:6379> keys *
1) "\xac\xed\x00\x05t\x00\x05myKey"
127.0.0.1:6379> SMEMBERS "\xac\xed\x00\x05t\x00\x05myKey"
1) "\xac\xed\x00\x05sr\x00\x0ejava.util.Datehj\x81\x01KYt\x19\x03\x00\x00xpw\b\x00\x00\x01N\xcf#\x9cHx"

如您所见,字符串和日期被序列化为一些表示 Java 序列化对象的疯狂字节。

您的代码建议您要存储基于字符串的键和值。只需将StringRedisSerializerRedisTemplate

Java 配置

redisTemplate.setKeySerializer(new StringRedisSerializer());
redisTemplate.setValueSerializer(new StringRedisSerializer());

XML 配置

<bean id="stringSerializer" class="org.springframework.data.redis.serializer.StringRedisSerializer"/>

<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate" 
    p:connection-factory-ref="jedisConnectionFactory">
    <property name="keySerializer" ref="stringSerializer"/>
    <property name="valueSerializer" ref="stringSerializer"/>
</bean>

<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" 
    p:host-name="myhostname" p:port="6379"/>

运行代码后的输出如下所示:

value
key
[value]

Spring Data Redis有一些有趣的序列化程序,允许在各种系统之间进行消息交换。您可以从内置序列化程序中进行选择

  • JacksonJsonRedisSerializer
  • Jackson2JsonRedisSerializer
  • JdkSerializationRedisSerializer (default)
  • OxmSerializer
  • GenericToStringSerializer

或创建自己的。

我使用Spring Data Redis 1.5.1.RELEASE和jedis 2.6.2来验证您的问题的结果。HTH, 马克

进一步阅读:


答案 2

使用 Redisson,你可以做得更容易:

public static void main(String[] args) {
    Config conf = new Config();
    conf.useSingleServer().setAddress(redisURL);

    RedissonClient redisson = Redisson.create(conf);
    RSet<String> set = redisson.getSet("key")
    for (String s : set.readAllValues()) {
        System.out.println(s);
    }
    redisson.shutdown();
}

此 framewrok 处理序列化并使用连接,因此您无需每次都处理它。像以前使用 Java 对象(Set、Map、List 等)一样使用 Redis。它也支持许多流行的编解码器。


推荐