Skip to content
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

Extended Sorted Set support by adding ZUNION command #860

Merged
merged 7 commits into from
Dec 13, 2022

Conversation

vladvildanov
Copy link
Contributor

@vladvildanov vladvildanov linked an issue Dec 12, 2022 that may be closed by this pull request
@@ -127,6 +127,7 @@
* @method $this zrevrange($key, $start, $stop, array $options = null)
* @method $this zrevrangebyscore($key, $max, $min, array $options = null)
* @method $this zrevrank($key, $member)
* @method $this zunion(array $keys, int[] $weights = [], string $aggregate = 'sum', bool $withScores = false)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should keys and weights be a single array?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure If I get you. If you mean argument types, then I think both of them should be arrays.

For keys it's definitely should be, since we need to resolve numkeys argument and the easiest way is to calculate array count and we already have a trait for it. For weights it's optional, but in my opinion it's always easy to deal with single element the same way we're dealing with collection, in this case we don't need to maintain different implementations for different argument types

@tillkruss tillkruss merged commit 6544780 into predis:main Dec 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

Add support for missing redis command ZUNION
2 participants