| 接口 | 说明 |
|---|---|
| RedisCallBack<T> |
Created by IntelliJ IDEA.
|
| RedisClientStatusChecker |
Created by IntelliJ IDEA.
|
| RedisClientStatusNotifier |
Created by IntelliJ IDEA.
|
| 类 | 说明 |
|---|---|
| AbstractRedisCacheManager |
Created by IntelliJ IDEA.
|
| BaseRedisCallBack<T> |
Created by IntelliJ IDEA.
|
| HaRedisCacheManager |
a implement of CacheManager in Redis
a example:
<bean id="myCacheManager" class="com.github.fartherp.framework.cache.redis.HaRedisCacheManager">
<property name="clientList">
<list>
<ref local="client"/>
</list>
</property>
<property name="retryTimes" value="3" />
</bean>
<bean id="client" class="com.github.fartherp.framework.cache.redis.RedisClient">
<property name="redisServer">
<value>127.0.0.1</value>
</property>
<property name="port">
<value>6379</value>
</property>
<property name="redisAuthKey">
<value>123456</value>
</property>
</bean>
Author: CK
Date: 2015/12/1 |
| PoolConfigUtils |
Created by IntelliJ IDEA.
|
| RedisCacheManager |
a implement of CacheManager in Redis
a example:
<bean id="myCacheManager" class="com.github.fartherp.framework.cache.redis.RedisCacheManager">
<property name="clientList">
<list>
<ref local="client"/>
</list>
</property>
</bean>
<bean id="client" class="com.github.fartherp.framework.cache.redis.RedisClient">
<property name="redisServer">
<value>127.0.0.1</value>
</property>
<property name="port">
<value>6379</value>
</property>
<property name="redisAuthKey">
<value>123456</value>
</property>
</bean>
Author: CK
Date: 2015/12/1 |
| RedisClient |
redis客户端
Author: CK
Date: 2015/12/1
|
| RedisClientStatusPingChecker |
Created by IntelliJ IDEA.
|
Copyright © 2018. All rights reserved.