hmset(
name: str,
mapping: dict
) → Union[Awaitable[str], str]
No method signature available for this client.
hmset(
key: byte[],
hash: Map<byte[], byte[]>
) → String // Return OK or Exception if hash is empty @deprecated Use Jedis#hset(String, Map) instead. Deprecated in Jedis 8.0.0. Mirrors Redis deprecation since 4.0.0.
hmset(
key: String,
hash: Map<String, String>
) → String // Return OK or Exception if hash is empty @deprecated Use Jedis#hset(String, Map) instead. Deprecated in Jedis 8.0.0. Mirrors Redis deprecation since 4.0.0.
hmset(
key: K, // the key.
map: Map<K, V> // the hash to apply.
) → String // String simple-string-reply.
hmset(
key: K, // the key.
map: Map<K, V> // the hash to apply.
) → RedisFuture<String> // String simple-string-reply.
hmset(
key: K, // the key.
map: Map<K, V> // the hash to apply.
) → Mono<String> // String simple-string-reply.
HMSet(
ctx: context.Context,
key: string,
values: ...interface{}
) → *BoolCmd
HashSet(
key: RedisKey, // The key of the hash.
hashFields: HashEntry[],
flags: CommandFlags // The flags to use for this operation.
) → void // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field to set in the hash.
value: RedisValue, // The value to set.
when: When, // Which conditions under which to set the field value (defaults to always).
flags: CommandFlags // The flags to use for this operation.
) → bool // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field to set in the hash.
value: RedisValue, // The value to set.
when: When, // Which conditions under which to set the field value (defaults to always).
flags: CommandFlags // The flags to use for this operation.
) → bool // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashFields: HashEntry[],
flags: CommandFlags // The flags to use for this operation.
) → void // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashFields: HashEntry[],
flags: CommandFlags // The flags to use for this operation.
) → void // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field to set in the hash.
value: RedisValue, // The value to set.
when: When, // Which conditions under which to set the field value (defaults to always).
flags: CommandFlags // The flags to use for this operation.
) → bool // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field to set in the hash.
value: RedisValue, // The value to set.
when: When, // Which conditions under which to set the field value (defaults to always).
flags: CommandFlags // The flags to use for this operation.
) → bool // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
HashSet(
key: RedisKey, // The key of the hash.
hashFields: HashEntry[],
flags: CommandFlags // The flags to use for this operation.
) → void // true if field is a new field in the hash and value was set, false if field already exists in the hash and the value was updated.
hmset(
$key: string,
$dictionary: array
) → mixed
hset_multiple(
key: K,
items: &'a [(F, V)]
) → (())
hset_multiple(
key: K,
items: &'a [(F, V)]
) → (())