valkey-java
valkey-java copied to clipboard
Support 'redis', 'rediss', 'valkey', and 'valkeys' as Protocols in URIs
Description
The Jedis client fork for Valkey should support the following protocols in URIs:
- redis (standard Redis connection)
- rediss (secure Redis connection)
- valkey (standard Valkey connection)
- valkeys (secure Valkey connection)
Any other protocol should be explicitly disallowed to ensure consistency and prevent unexpected behavior. Expected Behavior.
- When a URI with
redis://,rediss://,valkey://, orvalkeys://is provided, the client should correctly parse and establish a connection.
Supporting valkey and valkeys ensures proper integration with Valkey while maintaining backward compatibility with Redis-based URIs.
@ungerts Hello, as of now, there is no difference between Valkey and Java in the connection string. Why do you need to distinguish between them?