Method
zrangebyscore
(
self: SyncClientProtocol,
name: KeyT,
min: ZScoreBoundT,
max: ZScoreBoundT,
start: int | None = None,
num: int | None = None,
withscores: bool = False,
score_cast_func: type | Callable = float,
)
Source from the content-addressed store, hash-verified
| 8878 | |
| 8879 | @overload |
| 8880 | def zrangebyscore( |
| 8881 | self: SyncClientProtocol, |
| 8882 | name: KeyT, |
| 8883 | min: ZScoreBoundT, |
| 8884 | max: ZScoreBoundT, |
| 8885 | start: int | None = None, |
| 8886 | num: int | None = None, |
| 8887 | withscores: bool = False, |
| 8888 | score_cast_func: type | Callable = float, |
| 8889 | ) -> ZSetRangeResponse: ... |
| 8890 | |
| 8891 | @overload |
| 8892 | def zrangebyscore( |