我可以使用Redis
Jedis
检索值
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 RedisTemplate
时,我没有得到任何数据。我的数据作为Redis
存储在Set
。
// 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" />
答案 0 :(得分:26)
您必须配置序列化程序。
Redis模板使用序列化程序来处理键,值和散列键/值。序列化程序用于将Java输入转换为存储在Redis中的表示形式。如果您不配置任何内容,则序列化程序默认为JdkSerializationRedisSerializer
。因此,如果您在Java代码中要求键key
,则序列化程序会将其转换为
"\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"
如您所见,String和Date被序列化为一些代表Java序列化对象的疯狂字节。
您的代码建议您要存储基于字符串的键和值。只需在StringRedisSerializer
RedisTemplate
即可
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有一些有趣的序列化器,允许在各种系统之间进行消息交换。您可以从内置序列化程序中选择
或创建自己的。
我使用Spring Data Redis 1.5.1.RELEASE和jedis 2.6.2来验证问题的结果。 HTH,Mark
进一步阅读:
答案 1 :(得分:0)
使用Redisson:
可以轻松完成public static void main(String[] args) {
Config conf = new Config();
conf.useSingleServer().setAddress(host + ":" + port);
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。它也支持许多流行的编解码器。