Maksym Kovalenko

Results 17 comments of Maksym Kovalenko

Couple thoughts on this thread. 1. It does not make sense to have `master` and `slave` fields because they are dependent on each other. Having them as separate fields looses...

It's practical to start small and just upgrade to latest Redis and Java 8. It's easy and important. Other suggestions are all good, but can be discussed as the subsequent...

@tkroman I just created PR #110 that adds support for all Redis versions, I added binaries for Linux 64 only (don't have access to Win, Mac OS). @krzysztof-styrc @kstyrc Please...

Ha-ha, too many new changes on your fork! :) I'll probably have to redo quite a bit of my PR. But thanks, will rely on this fork.

Just add a shutdown hook. ``` Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { redis.stop(); } }); ```

Just looking at the stack trace is not enough, you need to check arguments that were passed to `HMSET`. At least one field/value pair **must** be passed. Check whether you're...

PR #2025 is now merged in, please close this issue.

I suspect you're using Jedis incorrectly. What's your code that leads eventually runs into the issue? Jedis pool is `Closeable` and you must close it explicitly just like with any...

I see. You're using 3.0.0-m1. Is this still an issue in the latest `3.1.0`? Another issue is that Jedis is using `commons-pool2` `2.6.2` whereas latest is `2.7.0`. I'd say both...