1. 在springboot中使用redis,只需要依赖spring-boot-starter-data-redis,然后在配置文件中配置spring.redis开头的一些配置,根据Redis的架构选择单节点,主从或集群模式,详情如下(2.0.0.REALSE):
# 单节点模式,无密码时置空或者不写配置,可以使用url,也可以使用host和port
spring.redis.database=0 # Database index used by the connection factory.
spring.redis.url= # Connection URL. Overrides host, port, and password. User is ignored. Example: redis://user:password@example.com:6379
spring.redis.host=localhost # Redis server host.
spring.redis.port=6379 # Redis server port.
spring.redis.password= # Login password of the redis server.
#主从模式
spring.redis.sentinel.master= # Name of the Redis server.
spring.redis.sentinel.nodes= # Comma-separated list of "host:port" pairs.
#集群模式
spring.redis.cluster.max-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
spring.redis.cluster.nodes= # Comma-separated list of "host:port" pairs to bootstrap from.
2. springboot reids线程池,只要增加commons-pool2依赖,springboot自动配置。注意springboot模式选择lettuce作为客户端(这种方式是redis官方推荐的),如果需要使用jedis,需要在redis的starter依赖包排除lettuce,并依赖主动添加jedis依赖。线程池配置如下:
spring.redis.jedis.pool.max-active=8 # Maximum number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
spring.redis.jedis.pool.max-idle=8 # Maximum number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
spring.redis.jedis.pool.max-wait=-1ms # Maximum amount of time a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
spring.redis.jedis.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
spring.redis.lettuce.pool.max-active=8 # Maximum number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
spring.redis.lettuce.pool.max-idle=8 # Maximum number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
spring.redis.lettuce.pool.max-wait=-1ms # Maximum amount of time a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
spring.redis.lettuce.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
spring.redis.lettuce.shutdown-timeout=100ms # Shutdown timeout.
3. 有了以上两步,就可以很完美的使用redis了。此时springboot默认提供了StringRedisTemplate和RedisTemplate<Object, Object>两个对象(还有一个对象在第4步中讲)。注意这两个对象使用的是同一个redisConnectionFactory(lettuce或者jedis的),即同一个线程池。区别是序列化和反序列化方式不同(关于Redis序列化和反序列化,springboot默认提供了StringRedisSerializer,JdkSerializationRedisSerializer和GenericJackson2JsonRedisSerializer三种方式,超出本文范围),前者是使用StringRedisSerializer作为redis的key,value,hashkey,hashvalue的序列化方式,后者使用JdkSerializationRedisSerializer。笔者推荐key和hashkey使用StringRedisSerializer,value和hashvalue使用GenericJackson2JsonRedisSerializer。使用方法可以模拟源码自己写,源码参见RedisAutoConfiguration。
4. Springboot还提供了Redis的另外一种使用,即作为EnableCache的缓存使用。当EnableCache开启后,需要在项目中配置spring.cache.*的相关配置。EnableCache使用本文不讲解,只讲解Redis有关的部分。相关配置如下:
spring.cache.type= # Cache type. By default, auto-detected according to the environment.
spring.cache.cache-names= # Comma-separated list of cache names to create if supported by the underlying cache manager.
spring.cache.redis.cache-null-values=true # Allow caching null values.
spring.cache.redis.key-prefix= # Key prefix.
spring.cache.redis.time-to-live=0ms # Entry expiration. By default the entries never expire.
spring.cache.redis.use-key-prefix=true # Whether to use the key prefix when writing to Redis.
这个EnableCache主要用到了Spring的CacheManager对象,不同的子类即对应不同的缓存策略的实现。我们先讲一下ConcurrentMapCacheManager,这是一个内存缓存方案,说直白点就是把数据用对象形式放到内存里,通过名字也知道是使用ConcurrentMap保存这些数据的,其被包裹在ConcurrentMapCache中供manager持有(有兴趣可以详细看看源码,可以从SimpleCacheConfiguration开始)。Springboot还有很逗的一个实现NONE,意思是缓存了,但是什么也没做,哈哈~,可以分析源码NoOpCacheConfiguration。回归正题,Redis的实现从RedisCacheConfiguration开始,这里springboot默认生成了RedisCacheManager对象,这个对象和第3步中的两个对象使用相同的连接池。RedisCacheManager持有的是RedisCache对象,其自身的参数请去扒源码(一般用不着),只有一个defaultCongfig的参数是用来生成RedisCache对象的,defaultCongfig有6个配置(其实是7个,另外一个不太懂,也没用过),其中4个如上面配置列表所示,列表中的配置是在生成manager的时候设置到manager中的,这样在manager创建持有对象的时候就会被设置到持有对象RedisCache中。另外还有2个key和value的序列化方法,Springboot没有对外暴露出来,但是我们可以自己创建manager并设置,或者通过springboot暴露的customer方法重新创建manager,其实都是创建。默认的序列化方法和RedisTemplate一样,key是String,value是jdk,注意没有hashkey和hashvalue,还有就是要包裹在SerializationPair中。最后讲一下RedisCache操作Redis默认使用的是DefaultRedisCacheWriter,其持有RedisConnectionFactory,只有8个方法,其中5个clean,get,put,putIfAbsent,remove是基本操作,,和锁有关的一个方法(这个这里先不讲)及继承自接口的两个默认方法(使用锁和不适用锁)。下面贴一下自己创建RedisCacheManager的简单实现:
@Bean
public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
RedisCacheConfiguration redisCacheConfiguration =
RedisCacheConfiguration.defaultCacheConfig().serializeValuesWith(
RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()));
return RedisCacheManager.builder(RedisCacheWriter.nonLockingRedisCacheWriter(redisConnectionFactory))
.cacheDefaults(redisCacheConfiguration).build();
}
其实主要就是对把RedisCacheConfiguration的7个变量设置成自己想要的,然后用它build出来一个manager就行啦。遗漏两点,上面配置列表中type和names,type很简单,要用什么缓存方法就写什么,注意要系统支持的,自己找文档或者扒源码(是一个枚举)。names是列表,一个值对应的就是manager持有的一个redisCache对象,在使用的时候可以指定使用cache对象的名字,好处就是给cache配置不同的参数,比如前缀呀,过期时间等。这里就有点尴尬啦,本来rediscache就是通过manager创建的,而manager的默认配置只有一份,也就是创建的所有cache对象都是一样的,创建多个又想不一样。下一节,我们讲讲自定义manager。
5. 模拟ConcurrentMapCacheManager和RedisCacheManager。一般我们会把redistemplate放到自定义rediscache中,这样就很简单啦。暂略。