vgetattr(
key: KeyT,
element: str
) → Union[Optional[Awaitable[dict]], Optional[dict]]
VGETATTR(
key: RedisArgument,
element: RedisArgument
) → Any
vgetattr(
key: String, // the name of the key that holds the vector set
element: String // the name of the element whose attributes to retrieve
) → String // the attributes of the element as a JSON string, or null if the element doesn't exist or has no attributes
vgetattr(
key: String, // the name of the key that holds the vector set
element: String // the name of the element whose attributes to retrieve
) → String // the attributes of the element as a JSON string, or null if the element doesn't exist or has no attributes
vgetattr(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → String // the attributes as a JSON string, or null if the key or element does not exist or has no attributes @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vgetattr/">Redis Documentation: VGETATTR</a>
vgetattr(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → RedisFuture<String> // the attributes as a JSON string, or null if the key or element does not exist or has no attributes @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vgetattr/">Redis Documentation: VGETATTR</a>
vgetattr(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → Mono<String> // the attributes as a JSON string, or null if the key or element does not exist or has no attributes @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vgetattr/">Redis Documentation: VGETATTR</a>
VGetAttr(
ctx: context.Context,
key: Any,
element: string
) → *StringCmd
VectorSetGetAttributesJson(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → string?
VectorSetGetAttributesJsonAsync(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Task<string?>
vgetattr(
$key: string,
$elem: string,
bool $asJson = false: Any
) → string|array|null
vgetattr(
key: K,
element: E
) → (Option<String>)
vgetattr(
key: K,
element: E
) → (Option<String>)