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" />
シリアライザーを構成する必要があります。
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"
ご覧のとおり、文字列と日付は、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、マーク
さらに読む:
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オブジェクト(セット、マップ、リスト...)で作業していたようにRedisで作業します。多くの一般的なコーデックもサポートしています。