Maksym Kovalenko

Results 17 comments of Maksym Kovalenko

In any case @venukbh , you should post your code, just describing the issue is not enough for us to do any kind of troubleshooting.

Need code, otherewise there's nothing to inspect, debug, fix, etc.

From what I see in your code, you're closing result of `.getResource()`, but you're not closing result of `.getJedisPool()`. On Tue, Oct 15, 2019 at 3:25 PM Venu wrote: >...

sure On Tue, Oct 29, 2019 at 10:14 AM Venu wrote: > @maksymkovalenko We should never > close pool. Closing pool will close all the connections in the pool. We...

Interceptors are just not in scope for Jedis. If you **really** need this, just subclass `Jedis`. I.e. something like: ``` public class MyJedis extends Jedis { ... @Override public String...

alternatively, you could just use aspects example: https://www.baeldung.com/spring-aop you can even make it a "jedis-interceptos" lib that others can use. Alternatively, jedis could make http client to be passed as...

Trivial PR, @kstyrc should merge it in.