Jedis is a Java client for Redis designed for performance and ease of use.
Jedis solves the problem of communicating with Redis servers from Java applications by providing a straightforward API for sending Redis commands. The client handles connection management and supports both single Redis instances and Redis Cluster deployments through separate connection classes. It implements the Redis Cluster Specification for clustered environments and includes support for all Redis data types including JSON and VectorSets. The tool also provides retry and failover capabilities, allowing applications to automatically switch between multiple Redis deployments when one becomes unavailable.
Jedis suits Java developers building applications that need direct Redis access without object-mapping abstractions. It works across a wide range of Java versions and maintains compatibility with multiple Redis versions. The README distinguishes Jedis from higher-level alternatives by noting that developers seeking object mapping should consider redis-om-spring instead, positioning Jedis as the lower-level choice for those who want direct command control. Teams should choose this tool when they need a performant, straightforward Redis client without additional abstraction layers.
The project maintains active support across multiple Java versions and Redis releases, with the most recent versions supporting Redis 7.2 through 8.10 and Java versions 8 through 25. Development activity shows consistent updates to track new Redis capabilities and maintain compatibility with current platform versions.