question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

jedis 3.0.0-SNAPSHOT have a bug?

See original GitHub issue

I 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:closed
  • Created 7 years ago
  • Comments:6

github_iconTop GitHub Comments

1reaction
marcosnilscommented, Jun 28, 2016

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

0reactions
chengjiafengcommented, Jun 30, 2016

JedisCluster.set -----> image

jedisCluster will release connection, so I do not need manager connection??

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found