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
After version 6.2 LPOP there can be additional count argumen in LPOP command. As seen in here:
https://redis.io/commands/LPOP
= 6.2: Added the count argument.
client.LPop(context.TODO(), "mylist", 2) => success
"Too many arguments in call"
Modify LPop command in commands.go to support count argument.
The text was updated successfully, but these errors were encountered:
fix redis#1754
a48d828
Signed-off-by: monkey <golang@88.com>
8f0fbd2
sync master to v9 (#1760)
fe9bc12
* Added missing idle args in XPendingExtArgs (#1750) Added missing idle args in XPendingExtArgs * fix #1754 (#1756) * Replace go-pg with bun * fix #1755 Signed-off-by: monkey <golang@88.com> * fix read data Signed-off-by: monkey <golang@88.com> * fix #1758 (#1759) fix #1758 Co-authored-by: Parvez <syedparvez72@gmail.com> Co-authored-by: Vladimir Mihailenco <vladimir.webdev@gmail.com>
No branches or pull requests
After version 6.2 LPOP there can be additional count argumen in LPOP command. As seen in here:
https://redis.io/commands/LPOP
Expected Behavior
client.LPop(context.TODO(), "mylist", 2) => success
Current Behavior
"Too many arguments in call"
Possible Solution
Modify LPop command in commands.go to support count argument.
The text was updated successfully, but these errors were encountered: