-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Jedis connector #248
Comments
This would require significant work and long-term support since Jedis is single-threaded and there must be built a bridge to Akka actor system and additional support of features you list. Unfortunately, I don't have that much time either to implement it or to support it. Are you willing to implement the alternative connector and support it? |
I may be able to do it in my spare time. Do you have any guidance where I should start to build the bridge in the project? |
Basically, all you need to do is to implement |
We have having a similar issue as we need TLS. The |
Yes, I agree that existing connector is dead and it should be migrated to something more alive, maybe jedis or something. However, given that Play itself seems to be dead, it is questionable whether it is efficient to add more features to this at this moment. Honestly, I am not using play for very long time so this is not on my todolist. However, if anybody is willing to contribute, I'd be more than happy merging it and releasing new version. |
Thanks for the answer. After spending some hours I decided to give redisson a try (which we were already using). Basically implement a custom Will see how it goes. Thanks anyways |
#301 replaces the current Rediscala connector with Lettuce. I hope that this one will last longer than all previous connectors. 🤞 Lettuce should hopefully provide all required features. |
Adding a Jedis Redis Client Provider
This would be used to determine the connector at run time and either connect using redisscala (default) or jedis. Additionally, add ssl config value that would default to false. It would only do something when jedis is selected, and maybe throw config exception if redisscala is selected.
The text was updated successfully, but these errors were encountered: