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
Some of the redis commands take optional arguments that can be particularly useful. Of note is the WITHSCORES and the LIMIT parameters to the various get methods for sorted sets.
In commit bfd8631 I added a ZRevrangeWithScores method to quickly allow me to use redis for my application that requires knowing the scores in a sorted set. More thought should be added to this (potentially using keyword arguments with default values?).
The text was updated successfully, but these errors were encountered:
Some of the redis commands take optional arguments that can be particularly useful. Of note is the
WITHSCORES
and theLIMIT
parameters to the various get methods for sorted sets.In commit bfd8631 I added a
ZRevrangeWithScores
method to quickly allow me to use redis for my application that requires knowing the scores in a sorted set. More thought should be added to this (potentially using keyword arguments with default values?).The text was updated successfully, but these errors were encountered: