Initially when I used 1 JedisPool to communicate with a Redis server (single instance of redis running on the server) I saw that my 200K queries took 15 sec to complete. For each query I do following:
Jedis jedis = pool.getResource();
Pipeline p = jedis.pipelined();
p.multi();
for (String ViewId : ViewIds) {
for (Article aR : view.getEntriesList()) {
p.rpush(ViewId, <article-in-json>);
}
p.ltrim(ViewId, -10, -1);
}
p.exec();
p.sync();
pool.returnResource(jedis);
JedisPool created using:
JedisPool pool = new JedisPool(new JedisPoolConfig(), getHostName(), getPort(), 0, "foobared");
However when I used 8 JedisPools to the same server (same redis instance) and used them in a round robin way I saw that 200K queries were processed in around 8-10 secs (earlier with 1 JedisPool it took 15 sec) => considerable improvement.
What is the reason for this? and what is the optimal number of JedisPools that we should use?