我指的是这个 SO question,我在这个基准测试中做了一些补充。主要问题是随着服务器负载的增加,我的 api 变得越来越慢。我正在使用绝地池配置。
// 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 实例。
根据共享的 SO 问题,我的实施将导致非常缓慢的结果。那么,我可以将 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。
Redis / Jedis 配置
Jedis版本:2.8.1 Redis版本:2.8.4 Java版本:1.8