sscan(
name: KeyT,
cursor: int = 0,
match: Union[PatternT, None] = None,
count: Optional[int] = None
) → ResponseT
SSCAN(
key: RedisArgument,
cursor: RedisArgument,
options?: ScanCommonOptions
) → Any
sscan(
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.
sscan(
key: String,
cursor: String,
params: ScanParams
) → ScanResult<String> // 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.
sscan(
key: K // the key.
) → ValueScanCursor<V> // StreamScanCursor scan cursor.
sscan(
key: K, // the key.
scanArgs: ScanArgs
) → ValueScanCursor<V> // StreamScanCursor scan cursor.
sscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → ValueScanCursor<V> // StreamScanCursor scan cursor.
sscan(
key: K, // the key.
scanCursor: ScanCursor // cursor to resume from a previous scan, must not be null.
) → ValueScanCursor<V> // StreamScanCursor scan cursor.
sscan(
channel: ValueStreamingChannel<V>, // streaming channel that receives a call for every value.
key: K // the key.
) → StreamScanCursor // StreamScanCursor scan cursor.
sscan(
key: K // the key.
) → RedisFuture<ValueScanCursor<V>> // StreamScanCursor scan cursor.
sscan(
key: K, // the key.
scanArgs: ScanArgs
) → RedisFuture<ValueScanCursor<V>> // StreamScanCursor scan cursor.
sscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → RedisFuture<ValueScanCursor<V>> // StreamScanCursor scan cursor.
sscan(
key: K, // the key.
scanCursor: ScanCursor // cursor to resume from a previous scan, must not be null.
) → RedisFuture<ValueScanCursor<V>> // StreamScanCursor scan cursor.
sscan(
channel: ValueStreamingChannel<V>, // streaming channel that receives a call for every value.
key: K // the key.
) → RedisFuture<StreamScanCursor> // StreamScanCursor scan cursor.
sscan(
key: K // the key.
) → Mono<ValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #sscan.
sscan(
key: K, // the key.
scanArgs: ScanArgs
) → Mono<ValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #sscan.
sscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → Mono<ValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #sscan.
sscan(
key: K, // the key.
scanCursor: ScanCursor // cursor to resume from a previous scan, must not be null.
) → Mono<ValueScanCursor<V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #sscan.
sscan(
channel: ValueStreamingChannel<V>, // streaming channel that receives a call for every 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 #sscan.
SScan(
ctx: context.Context,
key: string,
cursor: uint64,
match: string,
count: int64
) → *ScanCmd
SetScan(
key: RedisKey, // The key of the 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<RedisValue> // Yields all matching elements of the set.
SetScan(
key: RedisKey, // The key of the 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<RedisValue> // Yields all matching elements of the set.
SetScan(
key: RedisKey, // The key of the 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<RedisValue> // Yields all matching elements of the set.
SetScan(
key: RedisKey, // The key of the 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<RedisValue> // Yields all matching elements of the set.
sscan(
$key: string,
$cursor: int,
array $options = null: Any
) → array
No method signature available for this client.
No method signature available for this client.