hmget(
name: str,
keys: List,
*args: List
) → Union[Awaitable[List], List]
HMGET(
key: RedisArgument,
fields: RedisVariadicArgument
) → Any
hmget(
key: String,
fields: String...
) → List<String> // A list of all the values associated with the specified fields, in the same order of the request.
hmget(
key: K, // the key.
fields: K... // the fields.
) → List<KeyValue<K, V>> // Long count of the keys.
hmget(
channel: KeyValueStreamingChannel<K, V>, // the channel.
key: K, // the key.
fields: K... // the fields.
) → Long // Long count of the keys.
hmget(
key: K, // the key.
fields: K... // the fields.
) → RedisFuture<List<KeyValue<K, V>>> // Long count of the keys.
hmget(
channel: KeyValueStreamingChannel<K, V>, // the channel.
key: K, // the key.
fields: K... // the fields.
) → RedisFuture<Long> // Long count of the keys.
hmget(
key: K, // the key.
fields: K... // the fields.
) → Flux<KeyValue<K, V>> // Long count of the keys. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hmget.
hmget(
channel: KeyValueStreamingChannel<K, V>, // the channel.
key: K, // the key.
fields: K... // the fields.
) → Mono<Long> // Long count of the keys. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #hmget.
HMGet(
ctx: context.Context,
key: string,
fields: ...string
) → *SliceCmd
HashGet(
key: RedisKey, // The key of the hash.
hashField: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashFields: RedisValue[], // The fields in the hash to get.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashField: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashFields: RedisValue[], // The fields in the hash to get.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashField: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashFields: RedisValue[], // The fields in the hash to get.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashField: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → RedisValue // List of values associated with the given fields, in the same order as they are requested.
HashGet(
key: RedisKey, // The key of the hash.
hashFields: RedisValue[], // The fields in the hash to get.
flags: CommandFlags // The flags to use for this operation.
) → RedisValue[] // List of values associated with the given fields, in the same order as they are requested.
hmget(
$key: string,
$fields: array
) → array
hmget(
key: K,
fields: F
) → (Vec<String>)
hmget(
key: K,
fields: F
) → (Vec<String>)