kreds
kreds copied to clipboard
A thread-safe, non-blocking, coroutine-based Redis client implementation for Kotlin
I tried to use the subscriber client with a redis instance thats password-protected and found out by #8 that authentication is missing.
Just added a trust manager option to use SSL (file format)
SetOption throws KredsRedisDataException every time I use ULong options. Example: ``` newClient(Endpoint.from("127.0.0.1:${redis.firstMappedPort}")).use { client -> client.set("key", "val", SetOption.Builder(exSeconds = 30u).build()) ... ERR syntax error io.github.crackthecodeabhi.kreds.protocol.KredsRedisDataException: ERR syntax error at app//io.github.crackthecodeabhi.kreds.protocol.CommandProcessor.decode(Command.kt:69)...
How to auth the SubscriberClient? It doesn't implement auth() method
A performance benchmark against other widely used Redis clients for JVM.
Please implement the possibility to connect to redis sentinel setup
Bumps [kotest-runner-junit5](https://github.com/kotest/kotest) from 5.4.1 to 5.5.2. Release notes Sourced from kotest-runner-junit5's releases. v5.5.2 Gradle test filter fixes, by @myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig 5.5.1 Fixed...
Recently when trying to get a key the library failed with a NOAUTH error, however when the client was created, the auth method is invoked as it should be. The...
Hey, I have recently found out that when trying to write something for example a JSON object will lead to the issue `ERR syntax error` because not escaped. And almost...