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
ZRANGE
## Setup Command
ZADD leaderboard 50 "Alice" 70 "Bob" 60 "Charlie" 80 "Dave"
Redis: Returns the lowest score entry ("Alice") DiceDB: Matches Redis behavior.
Redis: Returns the highest score entry ("Dave") DiceDB: Matches Redis behavior.
Redis: (error) ERR value is not an integer or out of range DiceDB: Command succeeds unexpectedly.
Redis: Returns an empty array. DiceDB: Produces no output.
Redis: Executes correctly, returning entries with scores between 60 and 80, exclusive of 60. DiceDB: Error: ERR syntax error
Redis: Executes correctly, returning entries with scores strictly between 60 and 80. DiceDB: Error: ERR syntax error
Redis: Executes correctly, returning entries between lexical ranges. DiceDB: Error: ERR syntax error
Redis: Returns entries in descending score order with scores. DiceDB: Matches Redis behavior.
Redis: Returns (empty array) DiceDB: Produces no output.
Redis: Returns up to 2 entries with scores greater than 1. DiceDB: Error: ERR syntax error
I believe Error: ERR syntax error means not implemented. I'm open to implementing the missing parts (new to Golang will take me a lot of time tho).
Originally posted by @jonathanalvares9009 in #1284 (comment)
The text was updated successfully, but these errors were encountered:
@apoorvyadav1111 @lucifercr07 Kindly asign me this.
I have a PR ready for the BYScores, BYLEx, and soe other missing things in ZRNAGE and all the above things are working correctly.
Sorry, something went wrong.
Also please let me know if i should go ahead and add or update ZRANGE docs too.
@vanshavenger assigned, thanks for contributing. Please update the docs if required.
#1396
vanshavenger
No branches or pull requests
ZADD leaderboard 50 "Alice" 70 "Bob" 60 "Charlie" 80 "Dave"
Commands and Observations
I believe Error: ERR syntax error means not implemented. I'm open to implementing the missing parts (new to Golang will take me a lot of time tho).
Originally posted by @jonathanalvares9009 in #1284 (comment)
The text was updated successfully, but these errors were encountered: