Redis實戰之Redis + Jedis
用Memcached,對於快取物件大小有要求,單個物件不得大於1MB,且不支援複雜的資料型別,譬如SET
等。基於這些限制,有必要考慮Redis!
相關連結:
言歸正傳,目前Redis大概有3中基於Java語言的Client:
- Jredis
- Jedis
- Redis4J
這裡只說Jedis,因為它是官方提供的唯一Redis Client For Java Provider!
一、簡單使用Jedis
需要Jedis就從Maven獲取吧!
Maven Pom.xml
- <dependency>
- <groupId>redis.clients
- <artifactId>jedis</artifactId>
- <version>2.1.0</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
如果只是簡單使用Jedis,以下這麼幾行程式碼足夠:
Java程式碼- Jedis jedis = new Jedis("10.11.20.140");
- String keys = "name";
- // 刪資料
- jedis.del(keys);
- // 存資料
- jedis.set(keys, "snowolf");
- // 取資料
- String value = jedis.get(keys);
- System.out.println(value);
Jedis jedis = new Jedis("10.11.20.140"); String keys = "name"; // 刪資料 jedis.del(keys); // 存資料 jedis.set(keys, "snowolf"); // 取資料 String value = jedis.get(keys); System.out.println(value);
二、池化使用Jedis
Jedis使用commons-pool完成池化實現。
先做個配置檔案:
Properties程式碼- #最大分配的物件數
- redis.pool.maxActive=1024
- #最大能夠保持idel狀態的物件數
- redis.pool.maxIdle=200
- #當池內沒有返回物件時,最大等待時間
- redis.pool.maxWait=1000
- #當呼叫borrow Object方法時,是否進行有效性檢查
- redis.pool.testOnBorrow=true
- #當呼叫return Object方法時,是否進行有效性檢查
- redis.pool.testOnReturn=true
- #IP
- redis.ip=10.11.20.140
- #Port
- redis.port=6379
在靜態程式碼段中完成初始化:
Java程式碼- privatestatic JedisPool pool;
- static {
- ResourceBundle bundle = ResourceBundle.getBundle("redis");
- if (bundle == null) {
- thrownew IllegalArgumentException(
- "[redis.properties] is not found!");
- }
- JedisPoolConfig config = new JedisPoolConfig();
- config.setMaxActive(Integer.valueOf(bundle
- .getString("redis.pool.maxActive")));
- config.setMaxIdle(Integer.valueOf(bundle
- .getString("redis.pool.maxIdle")));
- config.setMaxWait(Long.valueOf(bundle.getString("redis.pool.maxWait")));
- config.setTestOnBorrow(Boolean.valueOf(bundle
- .getString("redis.pool.testOnBorrow")));
- config.setTestOnReturn(Boolean.valueOf(bundle
- .getString("redis.pool.testOnReturn")));
- pool = new JedisPool(config, bundle.getString("redis.ip"),
- Integer.valueOf(bundle.getString("redis.port")));
- }
private static JedisPool pool;
static {
ResourceBundle bundle = ResourceBundle.getBundle("redis");
if (bundle == null) {
throw new IllegalArgumentException(
"[redis.properties] is not found!");
}
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxActive(Integer.valueOf(bundle
.getString("redis.pool.maxActive")));
config.setMaxIdle(Integer.valueOf(bundle
.getString("redis.pool.maxIdle")));
config.setMaxWait(Long.valueOf(bundle.getString("redis.pool.maxWait")));
config.setTestOnBorrow(Boolean.valueOf(bundle
.getString("redis.pool.testOnBorrow")));
config.setTestOnReturn(Boolean.valueOf(bundle
.getString("redis.pool.testOnReturn")));
pool = new JedisPool(config, bundle.getString("redis.ip"),
Integer.valueOf(bundle.getString("redis.port")));
}
然後,修改前面那段jedis操作Redis
Java程式碼- // 從池中獲取一個Jedis物件
- Jedis jedis = pool.getResource();
- String keys = "name";
- // 刪資料
- jedis.del(keys);
- // 存資料
- jedis.set(keys, "snowolf");
- // 取資料
- String value = jedis.get(keys);
- System.out.println(value);
- // 釋放物件池
- pool.returnResource(jedis);
// 從池中獲取一個Jedis物件
Jedis jedis = pool.getResource();
String keys = "name";
// 刪資料
jedis.del(keys);
// 存資料
jedis.set(keys, "snowolf");
// 取資料
String value = jedis.get(keys);
System.out.println(value);
// 釋放物件池
pool.returnResource(jedis);
改為從物件池中,獲取Jedis例項:
Java程式碼- // 從池中獲取一個Jedis物件
- Jedis jedis = pool.getResource();
// 從池中獲取一個Jedis物件
Jedis jedis = pool.getResource();
切記,最後使用後,釋放Jedis物件:
Java程式碼- // 釋放物件池
- pool.returnResource(jedis);
// 釋放物件池
pool.returnResource(jedis);
三、一致性雜湊
Memcached完全基於分散式叢集,而Redis是Master-Slave,如果想把Reids,做成叢集模式,無外乎多做幾套Master-Slave,每套Master-Slave完成各自的容災處理,通過Client工具,完成一致性雜湊。
PS:Memcached是在Server端完成Sharding,Redis只能依靠各個Client做Sharding。可能會在Redis 3.0系列支援Server端Sharding。
保留前面的JedisPoolConfig,新增兩個Redis的IP(redis1.ip,redis2.ip),完成兩個JedisShardInfo例項,並將其丟進List中:
Java程式碼- JedisShardInfo jedisShardInfo1 = new JedisShardInfo(
- bundle.getString("redis1.ip"), Integer.valueOf(bundle .getString("redis.port")));
- JedisShardInfo jedisShardInfo2 = new JedisShardInfo(
- bundle.getString("redis2.ip"), Integer.valueOf(bundle .getString("redis.port")));
- List<JedisShardInfo> list = new LinkedList<JedisShardInfo>();
- list.add(jedisShardInfo1);
- list.add(jedisShardInfo2);
JedisShardInfo jedisShardInfo1 = new JedisShardInfo(
bundle.getString("redis1.ip"), Integer.valueOf(bundle .getString("redis.port")));
JedisShardInfo jedisShardInfo2 = new JedisShardInfo(
bundle.getString("redis2.ip"), Integer.valueOf(bundle .getString("redis.port")));
List<JedisShardInfo> list = new LinkedList<JedisShardInfo>();
list.add(jedisShardInfo1);
list.add(jedisShardInfo2);
初始化ShardedJedisPool代替JedisPool:
Java程式碼- ShardedJedisPool pool = new ShardedJedisPool(config, list);
ShardedJedisPool pool = new ShardedJedisPool(config, list);
改由ShardedJedis,獲取Jedis物件:
Java程式碼- // 從池中獲取一個Jedis物件
- ShardedJedis jedis = pool.getResource();
- String keys = "name";
- String value = "snowolf";
- // 刪資料
- jedis.del(keys);
- // 存資料
- jedis.set(keys, value);
- // 取資料
- String v = jedis.get(keys);
- System.out.println(v);
- // 釋放物件池
- pool.returnResource(jedis);
// 從池中獲取一個Jedis物件
ShardedJedis jedis = pool.getResource();
String keys = "name";
String value = "snowolf";
// 刪資料
jedis.del(keys);
// 存資料
jedis.set(keys, value);
// 取資料
String v = jedis.get(keys);
System.out.println(v);
// 釋放物件池
pool.returnResource(jedis);
四、Spring封裝參考
Ok,完成上述程式碼足夠完成簡單任務,如果有必要,可以用Spring封裝初始化:
Xml程式碼- <context:property-placeholderlocation="classpath:redis.properties"/>
- <bean
- id="jedisPoolConfig"
- class="redis.clients.jedis.JedisPoolConfig"
- >
- <property
- name="maxActive"
- value="${redis.pool.maxActive}"/>
- <property
- name="maxIdle"
- value="${redis.pool.maxIdle}"/>
- <property
- name="maxWait"
- value="${redis.pool.maxWait}"/>
- <property
- name="testOnBorrow"
- value="${redis.pool.testOnBorrow}"/>
- </bean>
- <bean
- id="shardedJedisPool"
- class="redis.clients.jedis.ShardedJedisPool"
- >
- <constructor-arg
- index="0"
- ref="jedisPoolConfig"/>
- <constructor-argindex="1">
- <list>
- <beanclass="redis.clients.jedis.JedisShardInfo">
- <constructor-arg
- index="0"
- value="${redis1.ip}"/>
- <constructor-arg
- index="1"
- value="${redis.port}"
- type="int"/>
- </bean>
- <beanclass="redis.clients.jedis.JedisShardInfo">
- <constructor-arg
- index="0"
- value="${redis2.ip}"/>
- <constructor-arg
- index="1"
- value="${redis.port}"
- type="int"/>
- </bean>
- </list>
- </constructor-arg>
- </bean>
程式碼可以更簡潔一些:
Java程式碼- private ApplicationContext app;
- private ShardedJedisPool pool;
- @Before
- publicvoid before() throws Exception {
- app = new ClassPathXmlApplicationContext("applicationContext.xml");
- pool = (ShardedJedisPool) app.getBean("shardedJedisPool");
- }
- @Test
- publicvoid test() {
- // 從池中獲取一個Jedis物件
- ShardedJedis jedis = pool.getResource();
- String keys = "name";
- String value = "snowolf";
- // 刪資料
- jedis.del(keys);
- // 存資料
- jedis.set(keys, value);
- // 取資料
- String v = jedis.get(keys);
- System.out.println(v);
- // 釋放物件池
- pool.returnResource(jedis);
- assertEquals(value, v);
- }
private ApplicationContext app;
private ShardedJedisPool pool;
@Before
public void before() throws Exception {
app = new ClassPathXmlApplicationContext("applicationContext.xml");
pool = (ShardedJedisPool) app.getBean("shardedJedisPool");
}
@Test
public void test() {
// 從池中獲取一個Jedis物件
ShardedJedis jedis = pool.getResource();
String keys = "name";
String value = "snowolf";
// 刪資料
jedis.del(keys);
// 存資料
jedis.set(keys, value);
// 取資料
String v = jedis.get(keys);
System.out.println(v);
// 釋放物件池
pool.returnResource(jedis);
assertEquals(value, v);
}
當然,Spring提供了對於Redis的專門支援:spring-data-redis,以後有機會再深入研究。
相關連結: