Skip to content

Java/Kotlin SDK

Stub - Not yet implemented.

Java and Kotlin SDKs are planned but not yet available. Oracle test runners exist for compatibility testing.

  • JNI bindings for native performance
  • Kotlin coroutines support
  • Android support

Want to help implement the Java/Kotlin SDK? See:

Use the server mode with Jedis or Lettuce:

// Start redlite server
// redlite --server --port 6379
// Use Jedis
Jedis jedis = new Jedis("localhost", 6379);
jedis.set("key", "value");
String val = jedis.get("key");