-
Notifications
You must be signed in to change notification settings - Fork 52
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 expire capability for SET calls to Redis #26
Comments
@uzunbaz What are you thinking? Just a configuration setting with the number of milliseconds until an expiration and then applying that to all |
Yes, something like that. I checked the source code briefly and looks like So, we can either use |
Hi, are there any news about this enhancement? |
Hi, |
Bumping this up, having this functionality would enable our use-case for caching. Much needed please! |
Would also love to have this implemented. Perhaps even with the possibility to set it dynamically with a kafka-header? Which could be added to the sink-configuration? |
Ignoring the fact that we need to use |
Hi, was this enhancement implemented? |
Currently, there is no capability to configure an expiration for records pushed to Redis by this connector. It will be nice to have a config to set the expire time for the records.
In other words, instead of
SET key value
, it should callSET key value [EX seconds|PX milliseconds]
where the time duration is configurable with the json file passed to the connector.The text was updated successfully, but these errors were encountered: