In Python have function zrangebyscore:
[zrangebyscore(self, name, min, max, start=None, num=None,withscores=False, score_cast_func=float)]
I want to get all element in sort set have score > min and no have limit max how do this work?
In Python have function zrangebyscore:
[zrangebyscore(self, name, min, max, start=None, num=None,withscores=False, score_cast_func=float)]
I want to get all element in sort set have score > min and no have limit max how do this work?
Copyright © 2021 Jogjafile Inc.
Specify
min
as required min score. Specifymax
as infinity.You may want to know how to pass infinity to redis from python.