vlinks(
key: KeyT,
element: str,
with_scores: Optional[bool] = False
) → Union[
VLINKS(
key: RedisArgument,
element: RedisArgument
) → Any
vlinks(
key: String, // the name of the key that holds the vector set
element: String // the name of the element whose HNSW neighbors you want to inspect
) → List<List<String>> // list of neighbor element names
vlinksWithScores(
key: String, // the name of the key that holds the vector set
element: String // the name of the element whose HNSW neighbors you want to inspect
) → List<Map<String, Double>> // List of map of neighbor element names to similarity scores per layer
vlinks(
key: String, // the name of the key that holds the vector set
element: String // the name of the element whose HNSW neighbors you want to inspect
) → List<List<String>> // list of neighbor element names
vlinksWithScores(
key: String, // the name of the key that holds the vector set
element: String // the name of the element whose HNSW neighbors you want to inspect
) → List<Map<String, Double>> // List of map of neighbor element names to similarity scores per layer
vlinks(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → List<V> // a list of elements that are linked to the specified element, or an empty list if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vlinks/">Redis Documentation: VLINKS</a>
vlinksWithScores(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → Map<V, Double> // a list of elements with their similarity scores, or an empty list if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vlinks/">Redis Documentation: VLINKS</a>
vlinks(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → RedisFuture<List<V>> // a list of elements that are linked to the specified element, or an empty list if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vlinks/">Redis Documentation: VLINKS</a>
vlinksWithScores(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → RedisFuture<Map<V, Double>> // a list of elements with their similarity scores, or an empty list if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vlinks/">Redis Documentation: VLINKS</a>
vlinks(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → Flux<V> // a list of elements that are linked to the specified element, or an empty list if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vlinks/">Redis Documentation: VLINKS</a>
vlinksWithScores(
key: K, // the key of the vector set
element: V // the name of the element in the vector set
) → Mono<Map<V, Double>> // a list of elements with their similarity scores, or an empty list if the key or element does not exist @since 6.7 @see <a href="https://redis.io/docs/latest/commands/vlinks/">Redis Documentation: VLINKS</a>
VLinks(
ctx: context.Context,
key: Any,
element: string
) → *StringSliceCmd
VLinksWithScores(
ctx: context.Context,
key: Any,
element: string
) → *VectorScoreSliceCmd
VectorSetGetLinks(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Lease<RedisValue>?
VectorSetGetLinksWithScores(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Lease<VectorSetLink>?
VectorSetGetLinksAsync(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Task<Lease<RedisValue>?>
VectorSetGetLinksWithScoresAsync(
key: RedisKey,
member: RedisValue,
flags: CommandFlags
) → Task<Lease<VectorSetLink>?>
vlinks(
$key: string,
$elem: string,
bool $withScores = false: Any
) → array|null
vlinks(
key: K,
element: E
) → Generic
vlinks(
key: K,
element: E
) → Generic