Definition
Vector Database
A vector database stores embeddings and makes it fast to search for semantically similar documents, images or records.
Short definition
A vector database stores embeddings and supports similarity search. Instead of asking for exact keyword matches, applications can ask for items whose vectors are close in meaning.
How it works
Documents are converted into embeddings, saved with metadata and indexed for fast nearest-neighbor search. When a user asks a question, the question is embedded too, and the database returns the closest matching chunks.
Example
In a RAG assistant, a vector database can retrieve the most relevant policy paragraphs before the language model writes an answer.
Why it matters
Vector databases are important for semantic search, recommendations and knowledge assistants. Their quality depends on chunking, metadata, embedding models and retrieval evaluation. They do not solve data quality problems by themselves.