MCPcopy
hub / github.com/redis/redis-py / zscan

Method zscan

redis/commands/core.py:6137–6144  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        name: KeyT,
        cursor: int = 0,
        match: PatternT | None = None,
        count: int | None = None,
        score_cast_func: type | Callable = float,
    )

Source from the content-addressed store, hash-verified

6135
6136 @overload
6137 def zscan(
6138 self: SyncClientProtocol,
6139 name: KeyT,
6140 cursor: int = 0,
6141 match: PatternT | None = None,
6142 count: int | None = None,
6143 score_cast_func: type | Callable = float,
6144 ) -> ZScanResponse: ...
6145
6146 @overload
6147 def zscan(

Callers 4

zscan_iterMethod · 0.95
test_zscanMethod · 0.80
test_zscanMethod · 0.80
zscan_iterMethod · 0.80

Calls 2

extendMethod · 0.45
execute_commandMethod · 0.45

Tested by 2

test_zscanMethod · 0.64
test_zscanMethod · 0.64