-
Notifications
You must be signed in to change notification settings - Fork 70
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
🚀 [Feature]: Implement Valkey Storage #1361
Comments
@H0llyW00dzZ The Redis and Rueidis clients work with Valkey. Therr's no need for anlther driver.
The valkey-go is a fork of rueidis which we have a storage driver for. |
However, that might not work anymore in the future. |
I think we are at a good point to revisit this issue. According to a December 2024 Redis Blog Post:
In this case, it may make sense to officially support Valkey through a separate storage driver. If we do this, we don't need to worry as much about breaking changes between Redis/Rueidis clients and Valkey clients for users that rely on GoFiber's storage module. Currently, the Valkey client appears to be just enough of the same as Ruedis, so it could be as simple as a copy-and-paste of the existing driver and rename to use Valkey's syntax. This way, once the clients start to vastly diverge, it won't inadvertently break GoFiber applications that upgrade to a future version. What do you all think of this? |
@grivera64 Agree, the code from the |
nice, finally |
@ReneWerner87 We need a release for Valkey |
Furthermore, it can improve performance related to Valkey, such as reducing latency caused by regional factors. In contrast to Redis Cloud, where database deployment for caching or as an in-memory database is restricted to specific regions, Valkey can be self-hosted or directly accessed from cloud providers like Google Cloud. |
@H0llyW00dzZ You can self-host Redis too. I run multiple self-hosted Redis and Redis Cluster instances. |
is a 0.0.1 version okay, as there will definitely be a breaking change in the next month due to our adaptation to fiber v3 ? |
@gaby Do you self-host Redis with TLS or not? Beause Self-hosting Redis has limitations compared to using Redis Cloud. |
Yes |
With and without TLS. It's the same thing. If you want all the features you have to use Redis Stack. See here https://github.com/redis-stack/redis-stack |
@ReneWerner87 It will be better for both v2 and v3 because Fiber v2 is stable. I've been using it on Kubernetes. |
Feature Description
This is similar to the Redis link
here
Additional Context (optional)
No response
Code Snippet (optional)
No response
Checklist:
The text was updated successfully, but these errors were encountered: