zscan(
name: KeyT,
cursor: int = 0,
match: Union[PatternT, None] = None,
count: Optional[int] = None,
score_cast_func: Union[type, Callable] = float
) → ResponseT
ZSCAN(
key: RedisArgument,
cursor: RedisArgument,
options?: ScanCommonOptions
) → Any
zscan(
key: byte[],
cursor: byte[]
) → ScanResult<Tuple> // OK @deprecated Use Jedis#set(String, String, redis.clients.jedis.params.SetParams) with redis.clients.jedis.params.SetParams#px(long). Deprecated in Jedis 8.0.0. Mirrors Redis deprecation since 2.6.12.
zscan(
key: Any,
cursor: Any,
ScanParams(: new
) → return // OK @deprecated Use Jedis#set(String, String, redis.clients.jedis.params.SetParams) with redis.clients.jedis.params.SetParams#px(long). Deprecated in Jedis 8.0.0. Mirrors Redis deprecation since 2.6.12.
zscan(
key: byte[],
cursor: byte[],
params: ScanParams
) → ScanResult<Tuple> // OK @deprecated Use Jedis#set(String, String, redis.clients.jedis.params.SetParams) with redis.clients.jedis.params.SetParams#px(long). Deprecated in Jedis 8.0.0. Mirrors Redis deprecation since 2.6.12.
zscan(
key: String,
cursor: String,
params: ScanParams
) → ScanResult<Tuple> // OK @deprecated Use Jedis#set(String, String, redis.clients.jedis.params.SetParams) with redis.clients.jedis.params.SetParams#px(long). Deprecated in Jedis 8.0.0. Mirrors Redis deprecation since 2.6.12.
zscan(
key: K // the key.
) → ScoredValueScanCursor<V> // StreamScanCursor scan cursor.
zscan(
key: K, // the key.
scanArgs: ScanArgs
) → ScoredValueScanCursor<V> // StreamScanCursor scan cursor.
zscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → ScoredValueScanCursor<V> // StreamScanCursor scan cursor.
zscan(
key: K, // the key.
scanCursor: ScanCursor // cursor to resume from a previous scan, must not be null.
) → ScoredValueScanCursor<V> // StreamScanCursor scan cursor.
zscan(
channel: ScoredValueStreamingChannel<V>, // streaming channel that receives a call for every scored value.
key: K // the key.
) → StreamScanCursor // StreamScanCursor scan cursor.
zscan(
key: K // the key.
) → RedisFuture<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor.
zscan(
key: K, // the key.
scanArgs: ScanArgs
) → RedisFuture<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor.
zscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → RedisFuture<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor.
zscan(
key: K, // the key.
scanCursor: ScanCursor // cursor to resume from a previous scan, must not be null.
) → RedisFuture<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor.
zscan(
channel: ScoredValueStreamingChannel<V>, // streaming channel that receives a call for every scored value.
key: K // the key.
) → RedisFuture<StreamScanCursor> // StreamScanCursor scan cursor.
zscan(
key: K // the key.
) → Mono<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zscan.
zscan(
key: K, // the key.
scanArgs: ScanArgs
) → Mono<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zscan.
zscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → Mono<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zscan.
zscan(
key: K, // the key.
scanCursor: ScanCursor // cursor to resume from a previous scan, must not be null.
) → Mono<ScoredValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zscan.
zscan(
channel: ScoredValueStreamingChannel<V>, // streaming channel that receives a call for every scored value.
key: K // the key.
) → Mono<StreamScanCursor> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zscan.
ZScan(
ctx: context.Context,
key: string,
cursor: uint64,
match: string,
count: int64
) → *ScanCmd
SortedSetScan(
key: RedisKey, // The key of the sorted set.
pattern: RedisValue, // The pattern to match.
pageSize: int, // The page size to iterate by.
flags: CommandFlags // The flags to use for this operation.
) → IEnumerable<SortedSetEntry> // Yields all matching elements of the sorted set.
SortedSetScan(
key: RedisKey, // The key of the sorted set.
pattern: RedisValue, // The pattern to match.
pageSize: int, // The page size to iterate by.
cursor: long, // The cursor position to start at.
pageOffset: int, // The page offset to start at.
flags: CommandFlags // The flags to use for this operation.
) → IEnumerable<SortedSetEntry> // Yields all matching elements of the sorted set.
SortedSetScan(
key: RedisKey, // The key of the sorted set.
pattern: RedisValue, // The pattern to match.
pageSize: int, // The page size to iterate by.
flags: CommandFlags // The flags to use for this operation.
) → IEnumerable<SortedSetEntry> // Yields all matching elements of the sorted set.
SortedSetScan(
key: RedisKey, // The key of the sorted set.
pattern: RedisValue, // The pattern to match.
pageSize: int, // The page size to iterate by.
cursor: long, // The cursor position to start at.
pageOffset: int, // The page offset to start at.
flags: CommandFlags // The flags to use for this operation.
) → IEnumerable<SortedSetEntry> // Yields all matching elements of the sorted set.
zscan(
$key: string,
$cursor: int,
?array $options = null: Any
) → array
No method signature available for this client.
No method signature available for this client.