vert-x3 / vertx-redis-client

Redis client for Vert.x
http://vertx.io
Apache License 2.0
131 stars 119 forks source link

Options decomposition #395

Closed vietj closed 1 year ago

vietj commented 1 year ago

Current RedisOptions mix connect and pooling options in the same class. If we want to use an options supplier pattern we should distinguish between those.

This PR decompose the RedisOptions in PoolOptions and a RedisConnectOptions hierarchy (for various client types) and keep the RedisOptions possible.