Java/Kotlin SDK
Status
Section titled “Status”Stub - Not yet implemented.
Java and Kotlin SDKs are planned but not yet available. Oracle test runners exist for compatibility testing.
Planned Features
Section titled “Planned Features”- JNI bindings for native performance
- Kotlin coroutines support
- Android support
Contributing
Section titled “Contributing”Want to help implement the Java/Kotlin SDK? See:
Workaround
Section titled “Workaround”Use the server mode with Jedis or Lettuce:
// Start redlite server// redlite --server --port 6379
// Use JedisJedis jedis = new Jedis("localhost", 6379);jedis.set("key", "value");String val = jedis.get("key");