-
Notifications
You must be signed in to change notification settings - Fork 36
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 keys to evalscript #109
Conversation
The existing code/tests worked by concatenating keys and args, but looking at the redis docs, as well as the ruby driver, I would have expected that keys and args would be two separate arguments. |
Yes, this looks like a valid fix to You probably meant the PR title to say Also wondering if we should use |
I realised this would be breaking unless we support the old behaviour as well. |
True. Maybe we add a |
On second thoughts, maybe we shouldn't do |
I guess we can merge this and go for a major version bump as discussed in #110 (comment) ? Maybe I'll merge this in a bit. I also think we should allow |
Shouldn't `evalscript` take a `keys` argument, at least according to https://redis.io/docs/latest/commands/eval/ ?
evalscript
should take akeys
argument, according to https://redis.io/docs/latest/commands/eval/