Skip to content

Latest commit

 

History

History
53 lines (27 loc) · 1.42 KB

File metadata and controls

53 lines (27 loc) · 1.42 KB

Redis vector_set commands (9/12 implemented)

Add a new element to a vector set, or update its vector if it already exists.

Return the number of elements in a vector set.

Return the dimension of vectors in the vector set.

Return the vector associated with an element.

Retrieve the JSON attributes of elements.

Return one or multiple random members from a vector set.

Return elements in a lexicographical range

Remove an element from a vector set.

Associate or remove the JSON attributes of elements.

Unsupported vector_set commands

To implement support for a command, see here

VINFO (not implemented)

Return information about a vector set.

VLINKS (not implemented)

Return the neighbors of an element at each layer in the HNSW graph.

VSIM (not implemented)

Return elements by vector similarity.