I'm trying to find references how to configure and use Lettuce Redis client with client-side consistent hashing.
This approach for a sharding is implemented in ShardedJedis from Jedis client and described in the Redis partitioning documentation.
Short description of the approach: We have an environment with multiple independent Redis processes/nodes, without any server-based request routing using Redis Cluster or Sentinel, and a client decides where to store/search key by applying a hash function (key -> node_id) on the client side.
Does lettuce support this type of clustering/sharding out of the box? If yes, how it could be configured to use client hashing?