List of usage examples for org.springframework.data.redis.connection RedisConnection select
void select(int dbIndex);
From source file:com.zxy.commons.cache.RedisHelper.java
/** * Select the DB with given positive {@code dbIndex}. * <p>/*w w w . jav a 2s. c om*/ * See http://redis.io/commands/select * * @param dbIndex dbIndex */ public void select(int dbIndex) { redisTemplate.execute(new RedisCallback<Void>() { @Override public Void doInRedis(RedisConnection redis) throws DataAccessException { redis.select(dbIndex); return null; } }); }