hscan(
name: KeyT,
cursor: int = 0,
match: Union[PatternT, None] = None,
count: Optional[int] = None,
no_values: Union[bool, None] = None
) → ResponseT
HSCAN(
key: RedisArgument,
cursor: RedisArgument,
options?: ScanCommonOptions
) → Any
hscan(
key: byte[],
params: byte[] cursor final ScanParams
) → ScanResult<Map.Entry<byte[], byte[]>>
hscan(
key: String,
params: String cursor final ScanParams
) → ScanResult<Map.Entry<String, String>>
hscanNoValues(
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.
hscan(
key: K // the key.
) → MapScanCursor<K, V> // StreamScanCursor scan cursor.
hscanNovalues(
key: K // the key.
) → KeyScanCursor<K> // StreamScanCursor scan cursor. @since 6.4
hscan(
key: K, // the key.
scanArgs: ScanArgs
) → MapScanCursor<K, V> // StreamScanCursor scan cursor.
hscanNovalues(
key: K, // the key.
scanArgs: ScanArgs
) → KeyScanCursor<K> // StreamScanCursor scan cursor. @since 6.4
hscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → MapScanCursor<K, V> // StreamScanCursor scan cursor.
hscan(
key: K // the key.
) → RedisFuture<MapScanCursor<K, V>> // StreamScanCursor scan cursor.
hscanNovalues(
key: K // the key.
) → RedisFuture<KeyScanCursor<K>> // StreamScanCursor scan cursor. @since 6.4
hscan(
key: K, // the key.
scanArgs: ScanArgs
) → RedisFuture<MapScanCursor<K, V>> // StreamScanCursor scan cursor.
hscanNovalues(
key: K, // the key.
scanArgs: ScanArgs
) → RedisFuture<KeyScanCursor<K>> // StreamScanCursor scan cursor. @since 6.4
hscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → RedisFuture<MapScanCursor<K, V>> // StreamScanCursor scan cursor.
hscan(
key: K // the key.
) → Mono<MapScanCursor<K, V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hscan.
hscanNovalues(
key: K // the key.
) → Mono<KeyScanCursor<K>> // StreamScanCursor scan cursor. @deprecated since 6.4 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hscanNovalues.
hscan(
key: K, // the key.
scanArgs: ScanArgs
) → Mono<MapScanCursor<K, V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hscan.
hscanNovalues(
key: K, // the key.
scanArgs: ScanArgs
) → Mono<KeyScanCursor<K>> // StreamScanCursor scan cursor. @deprecated since 6.4 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hscanNovalues.
hscan(
key: K, // the key.
scanCursor: ScanCursor, // cursor to resume from a previous scan, must not be null.
scanArgs: ScanArgs
) → Mono<MapScanCursor<K, V>> // StreamScanCursor scan cursor. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hscan.
HScan(
ctx: context.Context,
key: string,
cursor: uint64,
match: string,
count: int64
) → *ScanCmd
HScanNoValues(
ctx: context.Context,
key: string,
cursor: uint64,
match: string,
count: int64
) → *ScanCmd
HashScan(
key: RedisKey, // The key of the hash.
pattern: RedisValue, // The pattern of keys to get entries for.
pageSize: int, // The page size to iterate by.
flags: CommandFlags // The flags to use for this operation.
) → IEnumerable<HashEntry> // Yields all elements of the hash matching the pattern.
HashScan(
key: RedisKey, // The key of the hash.
pattern: RedisValue, // The pattern of keys to get entries for.
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<HashEntry> // Yields all elements of the hash matching the pattern.
HashScan(
key: RedisKey, // The key of the hash.
pattern: RedisValue, // The pattern of keys to get entries for.
pageSize: int, // The page size to iterate by.
flags: CommandFlags // The flags to use for this operation.
) → IEnumerable<HashEntry> // Yields all elements of the hash matching the pattern.
HashScan(
key: RedisKey, // The key of the hash.
pattern: RedisValue, // The pattern of keys to get entries for.
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<HashEntry> // Yields all elements of the hash matching the pattern.
hscan(
$key: string,
$cursor: Any,
?array $options = null: Any
) → array
No method signature available for this client.
No method signature available for this client.