You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at source, Condition.SortedSetLengthEqual transaction condition is currently using ZCARD key to determine sorted set's length.
It would be nice to have an overload of this method that accepts minimum and maximum score range, using ZCOUNT key min max. This would look at the number of members with score in the given range, not the cardinality of the entire set.
The text was updated successfully, but these errors were encountered:
Looking at source,
Condition.SortedSetLengthEqual
transaction condition is currently usingZCARD key
to determine sorted set's length.It would be nice to have an overload of this method that accepts minimum and maximum score range, using
ZCOUNT key min max
. This would look at the number of members with score in the given range, not the cardinality of the entire set.The text was updated successfully, but these errors were encountered: