-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
Implement ZAdd and Zscore #79
Conversation
val result = jedis.zscore("zset", "foo"); | ||
assertNull(result); | ||
} finally { | ||
jedis.del("zset"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @the123saurav, we might don't need this finally
block because we already reset the database after every @Test
method
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ohh missed it completely, will remove.
Great work @the123saurav 🎉 , also we need to update docs for command on the website too, for example https://github.com/keva-dev/keva/pull/55/files#diff-f0a6bf8edd363560735f8cabf8ad1b8f62d6d171c968ad63d60497d2ef1fbb56 |
16cfec7
to
b509dfc
Compare
Incorporated changes! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Implement a Sorted Set data structure and couple of basic commands, namely ZAdd and ZScore