-
-
Notifications
You must be signed in to change notification settings - Fork 989
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
Extend Sorted Set support by implementing BZPOPMAX command #864
Conversation
src/Command/Redis/BZPOPMAX.php
Outdated
* A member with the highest score is popped from first sorted set that is non-empty, | ||
* with the given keys being checked in the order that they are given. | ||
*/ | ||
class BZPOPMAX extends BZPOPMIN |
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.
This doesn't seem right. Either we can have a BZPOPBase which would be extended by both BZPOPMAX and BZPOPMIN or these two would be independent.
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.
Good point
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.
@sazzad16 Fixed
#841
@dvora-h @sazzad16