我指的是这个SO question,我在这个基准测试中做了几个补充。主要问题是随着服务器负载的增加,我的apis变慢了。我正在使用jedis池配置。
// get a new instance
public synchronized Jedis getJedi() {
try {
return jedisPool.getResource();
} catch (Exception e) {
log.fatal("REDIS CONN ERR:", e);
return null;
}
}
// intialize at start
public void initialize() {
if (jedisPool == null) {
IniUtils cp = PropertyReader.getConnPoolIni();
String host = cp.get(REDIS, REDIS_HOST);
int port = Integer.parseInt(cp.get(REDIS, REDIS_PORT));
String password = cp.get(REDIS, REDIS_PASSWORD);
int timeout = Integer.parseInt(cp.get(REDIS, REDIS_TIMEOUT));
JedisPoolConfig poolConfig = new JedisPoolConfig();
poolConfig.setMaxTotal(Integer.parseInt(cp.get(REDIS, REDIS_MAX_TOTAL_CONNECTIONS)));
poolConfig.setMaxIdle(Integer.parseInt(cp.get(REDIS, REDIS_MAX_IDLE)));
poolConfig.setMinIdle(Integer.parseInt(cp.get(REDIS, REDIS_MIN_IDLE)));
poolConfig.setMaxWaitMillis(Long.parseLong(cp.get(REDIS, REDIS_MAX_WAIT_TIME_MILLIS)));
poolConfig.setTestOnBorrow(true);
poolConfig.setTestOnReturn(true);
poolConfig.setTestWhileIdle(true);
if (password != null && !password.trim().isEmpty()) {
jedisPool = new JedisPool(poolConfig, host, port, timeout, password);
} else {
jedisPool = new JedisPool(poolConfig, host, port, timeout);
}
test();
}
}
@Override
public void destroy() {
if (jedisPool.isClosed() == false)
jedisPool.destroy();
}
private void test() {
try (Jedis test = getJedi()) {
log.info("Testing Redis:" + test.ping());
}
}
在使用时,我在try-with-resources中获取Jedis实例并对其进行处理。我使用非常少的流水线操作,并且有对Redis的各种调用,因此每次进行方法调用时,都会创建一个新的jedis实例。
根据共享的问题,我的实施将导致非常缓慢的结果。因此,我可以将Jedis实例传递给方法,并根据业务逻辑使用管道。 像这样的东西 -
public void push5(int n) {
try (Jedis jedi = redisFactory.getJedi()) {
pushWithResource(n, jedi, 0);
}
}
public void pushWithResourceAndPipe(int n, Jedis jedi, int k) {
if (k >= n)
return;
Pipeline pipeline = jedi.pipelined();
map.put("id", "" + i);
map.put("name", "lyj" + i);
pipeline.hmset("m" + i, map);
++i;
pushWithResourceAndPipe(n, jedi, ++k);
pipeline.sync();
}
public void pushWithResource(int n, Jedis jedi, int k) {
if (k >= n)
return;
map.put("id", "" + i);
map.put("name", "lyj" + i);
jedi.hmset("m" + i, map);
++i;
pushWithResource(n, jedi, ++k);
}
有没有办法改善api通话? 你能推荐一些在服务器端使用jedis的项目,这样我就能更好地理解如何有效地使用jedis。
Jedis版本:2.8.1 Redis版本:2.8.4 Java版本:1.8
答案 0 :(得分:1)