redisキャッシュオブジェクト、リスト
7539 ワード
Spring boot環境にStringRedisTemplateオブジェクトがあり、デフォルトでは自動注入で使用できますが、Redisに文字列を格納するだけで使用できます.具体的な操作は以下の通りです.
StringRedisTemplateのコンストラクタでは、設定されたシーケンサが文字列であるため、文字列にのみアクセスできます.コンストラクタ:
現在、RedisTemplateを使用してオブジェクトにアクセスするには、対応するシーケンス化器を設定するだけでいいです.操作は次のとおりです.
次に、次のテストを行います.
転載先:https://www.cnblogs.com/Struts-pring/p/10895746.html
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@DirtiesContext
public class Test {
@Autowired
private StringRedisTemplate stringRedisTemplate;
@Test
public void test() throws Exception {
stringRedisTemplate.opsForValue().set("aaa", "111");
Assert.assertEquals("111", stringRedisTemplate.opsForValue().get("aaa"));
}
}
StringRedisTemplateのコンストラクタでは、設定されたシーケンサが文字列であるため、文字列にのみアクセスできます.コンストラクタ:
public StringRedisTemplate() {
RedisSerializer stringSerializer = new StringRedisSerializer();
this.setKeySerializer(stringSerializer);
this.setValueSerializer(stringSerializer);
this.setHashKeySerializer(stringSerializer);
this.setHashValueSerializer(stringSerializer);
}
現在、RedisTemplateを使用してオブジェクトにアクセスするには、対応するシーケンス化器を設定するだけでいいです.操作は次のとおりです.
package com.newegg.core.service.config;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
public class RedisConfig {
/**
* redisTemplate jdkSerializeable, ,
* @param redisConnectionFactory
* @return
*/
@Bean
public RedisTemplate
次に、次のテストを行います.
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@DirtiesContext
public class Test {
@Autowired
private RedisTemplate template;
@Test
public void savereids() {
User u = new User(1, " ", 21);
template.opsForValue().set(u.getId() + "", u);
User result = (User) template.opsForValue().get(u.getId() + "");
System.out.println(result.toString());
}
@Test
public void saveHashReids(){
for(int i=1;i<10;i++){
User u=new User(i," ",21);
template.opsForHash().put("myCache",u.getId(),u);
}
ArrayList list=template.opsForHash().values("myCache")
}
}
転載先:https://www.cnblogs.com/Struts-pring/p/10895746.html