Spring Boot 2.0実践:Redis
Redis常用cmd:
maven依存:
application.properties:
カスタム設定:
使用方法:opsForValue()のように注入されたredisTemplateで直接操作する.set().この場合、動作をカスタマイズするには、上記の構成のredisTemplate()メソッドが必要です. @Cacheableなどで注記します.このときカスタマイズするには、上記のredisCacheConfiguration()セクションを構成する必要があります.注記実行は、redisTemplateを直接使用するのではなく、シーケンス化などのRedisCacheConfigurationのCacheManagerのプロパティを使用するためです.詳細は、springboot cacheキャッシュ注記ソース解析
PS C:\Program Files\Redis> .\redis-cli.exe -h 127.0.0.1 -p 6379 -a 123456
> SELECT 0
> keys *
> type "aaa"
> hkeys "aaa"
> hgetall "aaa"
> get "aaa"
maven依存:
org.springframework.boot
spring-boot-starter-data-redis
org.apache.commons
commons-pool2
application.properties:
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=123456
spring.redis.database=2
spring.redis.lettuce.pool.max-active=8
spring.redis.lettuce.pool.max-wait=-1
spring.redis.lettuce.pool.max-idle=8
spring.redis.lettuce.pool.min-idle=0
spring.redis.timeout=3600ms
カスタム設定:
@Configuration
@EnableCaching
public class RedisConfig extends CachingConfigurerSupport {
@Bean
public RedisTemplate redisTemplate(RedisConnectionFactory redisConnectionFactory) {
RedisTemplate redisTemplate = new RedisTemplate();
redisTemplate.setConnectionFactory(redisConnectionFactory);
Jackson2JsonRedisSerializer
使用方法: