We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I've seen that value is not being used in here. Is there any reason to not use the value parameter? If you miss to use it, I can fix it.
value
The text was updated successfully, but these errors were encountered:
Thank you for the comment @gozeloglu
The SetEx method is currently implemented on the key. The idea is that as follows
set foo bar #for setting value setex foo 15. #for setting expiry
We could definitely combine this into a single command, what do you think?
Sorry, something went wrong.
The SetEx method is currently implemented on the key.
What do you mean by this? Where is the key?
Do you mean by combining Set and SetEx with a single command? If yes, I think it's not a good idea, because the commands' purposes are different.
Set
SetEx
The SetEx method would only use key in the params in the function
We could definitely combine this into a single command, what do you think? Redis already has a setex command which does the same
https://redis.io/commands/setex/
No branches or pull requests
Hi,
I've seen that
value
is not being used in here. Is there any reason to not use thevalue
parameter? If you miss to use it, I can fix it.The text was updated successfully, but these errors were encountered: