what do think guys, about this lib <https://github...
# announcements
q
what do think guys, about this lib https://github.com/KDatabases/Kedis
👎 2
r
Jedis is dead, don't rely on it
t
@ribesg why? What's wrong with Jedis? I'm using it on a new project, is there a good reason to use another client?
b
we wrote our own client back a few years ago because there wasn't a reasonable async client https://github.com/vkorenev/RedRadishes
would be nice to have something which supports coroutines
r
@tmg It had no release in a year, it's maintained by two very inactive people (their own words)
I recently switched from Jedis to Lettuce for this reason
Jedis isn't updated to the latest Redis changes, a few things you can do in the Redis shell you can't do with Jedis
b
we didn't use lettuce because of the netty dependency. it's a monster! 🙂
q
but Jedis is most popular of them. Is it stable ?
b
we were using it before and it was. don't know about new redis features though .. haven't been using it in a while.