vsetattr(
key: KeyT,
element: str,
attributes: Optional[Union[dict, str]] = None
) → Union[Awaitable[int], int]
VSETATTR(
key: RedisArgument,
element: RedisArgument,
attributes: RedisArgument | Record<string, any>
) → Any
vsetattr(
key: String, // the name of the key that holds the vector set
element: String, // the name of the element whose attributes to set
attributes: String // the attributes to set as a JSON string
) → boolean // true if the attributes were set successfully
vsetattr(
key: byte[], // the name of the key that holds the vector set
element: byte[], // the name of the element whose attributes to set
attributes: byte[] // the attributes to set as a JSON string
) → boolean // true if the attributes were set successfully
vsetattr(
key: String, // the name of the key that holds the vector set
element: String, // the name of the element whose attributes to set
attributes: String // the attributes to set as a JSON string
) → boolean // true if the attributes were set successfully
vsetattr(
key: K, // the key of the vector set
element: V, // the name of the element in the vector set
json: String // the attributes as a JsonValue object
) → Boolean // true if the attributes were set, false if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vsetattr/">Redis Documentation: VSETATTR</a>
vsetattr(
key: K, // the key of the vector set
element: V, // the name of the element in the vector set
json: JsonValue // the attributes as a JsonValue object
) → Boolean // true if the attributes were set, false if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vsetattr/">Redis Documentation: VSETATTR</a>
vsetattr(
key: K, // the key of the vector set
element: V, // the name of the element in the vector set
json: String // the attributes as a JsonValue object
) → RedisFuture<Boolean> // true if the attributes were set, false if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vsetattr/">Redis Documentation: VSETATTR</a>
vsetattr(
key: K, // the key of the vector set
element: V, // the name of the element in the vector set
json: JsonValue // the attributes as a JsonValue object
) → RedisFuture<Boolean> // true if the attributes were set, false if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vsetattr/">Redis Documentation: VSETATTR</a>
vsetattr(
key: K, // the key of the vector set
element: V, // the name of the element in the vector set
json: String // the attributes as a JsonValue object
) → Mono<Boolean> // true if the attributes were set, false if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vsetattr/">Redis Documentation: VSETATTR</a>
vsetattr(
key: K, // the key of the vector set
element: V, // the name of the element in the vector set
json: JsonValue // the attributes as a JsonValue object
) → Mono<Boolean> // true if the attributes were set, false if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vsetattr/">Redis Documentation: VSETATTR</a>
VSetAttr(
ctx: context.Context,
key: Any,
element: string,
attr: interface{}
) → *BoolCmd
No method signature available for this client.
VectorSetSetAttributesJsonAsync(
key: RedisKey,
member: RedisValue,
NET7_0_OR_GREATER: #if,
[StringSyntax(StringSyntaxAttribute.Json)]: Any,
#endif: Any,
attributesJson: string,
flags: CommandFlags
) → Task<bool>
vsetattr(
$key: string,
$elem: string,
$attributes: string|array
) → bool
vsetattr(
key: K,
element: E,
json_object: &'a J
) → (bool)
vsetattr(
key: K,
element: E,
json_object: &'a J
) → (bool)