jedis 3.0.0-SNAPSHOT have a bug?
See original GitHub issueI meet a problem where jedis gets data very slowly when server is running a period of time. Is that because jedis version?
Redis / Jedis Configuration
static { GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig(); poolConfig.setMaxWaitMillis(3000); poolConfig.setMinIdle(5); poolConfig.setMaxIdle(200); poolConfig.setMaxTotal(1000);
Integer timeout = 2000;
Integer maxRedirections = 1;
Set<HostAndPort> haps = parseHostAndPort();
try {
jedisCluster = new JedisClusterExt(haps, timeout, maxRedirections, poolConfig);
} catch (Exception e) {
logger.error("Redis cluster initialization error", e);
}
}
Jedis version: jedis 3.0.1
Redis version:3.0.2
Java version:1.7.0_71
Issue Analytics
- State:
- Created 7 years ago
- Comments:6
Top Results From Across the Web
jedis 3.0.0-SNAPSHOT have a bug? · Issue #1328 · redis/jedis ...
I meet a problem where jedis gets data very slowly when server is running a period of time. Is that because jedis version?...
Read more >Road to Jedis 3.0 - Google Groups
I have created a version of the Async Jedis using the current 3.0.0 snapshot. (removing calls to client.getIntegerReply() and client.
Read more >Error redis clients jedis HostAndPort cant resolve localhost ...
This bug seems to have been fixed in Jedis on June 15 so should be ... Jedis master (which is at version 3.0.0-SNAPSHOT...
Read more >Error redis clients jedis HostAndPort cant resolve localhost ...
This bug seems to have been fixed in Jedis on June 15 so should be included ... the latest Jedis master (which is...
Read more >com.github.24kpure : jedis-mock : 0.0.3 - Maven Central Repository ...
jedis -mock - In memory Redis mock for testing.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
There’s no Jedis 3.0.1 version. We can’t do a lot with this, please provide more info like thread dumps or code to reproduce the error you’re seeing
JedisCluster.set ----->
jedisCluster will release connection, so I do not need manager connection??