VINFO

Syntax
VINFO key
Available since:
Redis CE 8.0.0
Time complexity:
O(1)

Return metadata and internal details about a vector set, including size, dimensions, quantization type, and graph structure.

VINFO word_embeddings
1) quant-type
2) int8
3) vector-dim
4) (integer) 300
5) size
6) (integer) 3000000
7) max-level
8) (integer) 12
9) vset-uid
10) (integer) 1
11) hnsw-max-node-uid
12) (integer) 3000000

Required arguments

key

is the name of the key that holds the vector set.

RESP2 Reply

One of the following:

  • Array reply containing metadata and internal details about a vector set, including size, dimensions, quantization type, and graph structure.
  • Array reply (null array reply) for unknown key.

RESP3 Reply

One of the following:

  • Array reply containing metadata and internal details about a vector set, including size, dimensions, quantization type, and graph structure.
  • Null reply for unknown key.

RATE THIS PAGE
Back to top ↑