skip to Main Content

Redisson client when doing a put or set operation always gets a connection first. Is there a way to reuse the same connection and reduce the cost of operations

2

Answers


  1. I experimented with jedis client that reuses the same connection. I am using that for now.

    Login or Signup to reply.
  2. Redisson client when doing a put or set operation always gets a connection first

    It uses pooled connections. Never creates it each time. During first operation codec may require warmup. You can try to use simple StringCodec.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search