Zenaique
Glossary · RAG

Vector Database

Also known as: Vector store, ANN index

A database tuned for fast approximate nearest-neighbor search over millions of high-dimensional vectors.

A specialized database optimized for storing, indexing, and querying high dimensional embedding vectors using approximate nearest neighbor (ANN) algorithms like HNSW or IVF.

In practice

Picking the right index (HNSW, IVF, ScaNN) and recall-vs-latency knob is a standard senior-level RAG interview question.

How it compares

Embeddings are the data; vector databases are the storage and retrieval layer for them.

Related topics

Practice questions

Related terms