惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
腾讯CDC
博客园 - 司徒正美
A
About on SuperTechFans
H
Help Net Security
J
Java Code Geeks
C
Check Point Blog
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
MyScale Blog
MyScale Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
博客园 - 【当耐特】
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Vector Databases in RAG - Day 2
Gokul Kannan · 2026-05-03 · via DEV Community

In Day-1, we understood about the overview of a RAG system and what are its components and how it helps the LLM to generate more accurate and contextual responses. Now, lets see about the storage of the data using Vector Databases.

Vector Database

Lets assume that we have a PDF with us and this would be considered as our private data. Now I want my LLM to have the context about this PDF, So that I could ask any query related to that PDF and get the response.

Now, we need to store this PDF data in a format with which the LLM could fetch the data and give us a relevant responses.
Here in this case, Vector Database helps us to store the PDF data in a Numerical format which can be used by the LLM to fetch the relevant data.

A vector database stores data in the form of vectors (arrays of numbers).

A vector database is a specialized database designed to store and search vector embeddings (numerical representations of data). Unlike traditional RDBMS systems that use exact matching (like SQL queries), vector databases are optimized for similarity search. Examples include ChromaDB, Pinecone, FAISS, and Qdrant.

Example:

Text => converted into numbers using embeddings
Image => converted into numbers
Audio => converted into numbers

These numbers capture meaning, not just raw data.

What does mean by Numerical Format?

It means the any kind of Data (Text, Image or Audio) is converted into a numerical format using any kind of encoding algorithms and gets saved into DB.

Here, first we would break down the PDF data as chunks of data where each chunk would have n number of characters. Then each chunks would be converted into a vector points with n-number of dimensions. To have clear understanding, Lets see the below example :

  1. Today is Wednesday
  2. Tomorrow is Thursday
  3. I am travelling today
  4. Wednesday is a nice series

Now I need this data to be converted into some sort of numerical format - as vectors. Here lets consider a simple One Hot Encoding.

First lets just find all the unique words and list it down as an array.

[Today, is, Wednesday, Tomorrow, Thursday, I, am, Travelling, a, nice, series]

Now lets assign the values 1 and 0 for each words in the same array format. We would give 1 if it occurs in the sentence, if not 0.

  1. 1 1 1 0 0 0 0 0 0 0 0
  2. 0 1 0 1 1 0 0 0 0 0 0
  3. 1 0 0 0 0 1 1 1 0 0 0
  4. 0 1 1 0 0 0 0 0 1 1 1

As you can see, now we have converted each sentence into a numerical format. This is a very basic encoding algorithm which can be used for a meaningful conversion.

How do we do this conversion?

Now we understood that why we need to convert the data in a numerical format and we would use different kinds of encoding algorithms to do that conversion.

So, how do we convert our data into a format which can be stored in a vector database? The answer is Embedding Models.

What is this Embedding Model?

Embedding Model helps us to convert our data into vectors which can then be stored into a vector DB.

There are different sets of embedding models available. One such model is nomic-embed which has a 768 Dimensions, it means each chunk of data is represented as a vector of 768 Dimensions.

Data

[nomic-embed -Embedding Model]

768D[] vectors

VectorDB

Why do we need to save as Numerical Format?

We may have a question that why can't we just store the same text data into the DB and do a normal text search. In this case, what happens is, we would be able to save those as isolated words and we can't really extract the context or semantic meaning out of this.

Vector DB helps us to find a similar meaning data by doing a Similarity or Semantic Search.

Now lets understand the whole flow where this Vector DB gets used:

  1. Your data (PDF, docs, DB) → converted into embeddings
  2. Stored in a vector DB
  3. When user asks a question → it is also converted into a vector
  4. Vector DB finds similar content
  5. That content is sent to the LLM for answer generation

Lets understand with an example.

Imagine a company has:

1000 PDFs (policies, FAQs, manuals)
They want a chatbot to answer questions based on these documents

Step 1: Convert documents into vectors

  • Each paragraph is converted into numbers (embeddings) using an Embedding Model

Step 2: Store in Vector Database

Step 3: User asks a question

Step 4: Convert question into vector

Step 5: Similarity Search

Vector DB compares:

  • Question vector
  • Stored document vectors

It finds the closest match (similar meaning)

How does a vector DB finds the similar meaning?

A Vector Database is a type of database designed to store data as numerical vectors (embeddings) and efficiently retrieve similar data by performing similarity searches using metrics like cosine similarity.

Let’s imagine we reduce everything to 2D (real systems use 100s–1000s of dimensions).

We take 5 words:

Cat
Dog
Tiger
Car
Bus

Now imagine they are plotted like this:

    ↑ Y-axis
    |
    |        Tiger .(0.8, 0.9)
    |
    |   Cat .(0.6, 0.7)
    |   Dog .(0.65, 0.6)
    |
    |
    |
    |                    Car .(0.1, 0.2)
    |                    Bus .(0.15, 0.25)
    |
    +--------------------------------→ X-axis

Enter fullscreen mode Exit fullscreen mode

Cat, Dog, Tiger are close → similar meaning ()
Car, Bus are close → similar meaning
Animals are far from vehicles → very different

Step 1: User query

  • Let’s say user searches: "Lion"
  • We convert "Lion" into a vector: Lion → (0.75, 0.85)

Step 2: Compare with existing points

  • Now the Vector DB calculates similarity using something like:
    • Cosine similarity - This measures the angle between two vectors, not just distance
    • OR Euclidean distance

Step 3: Find nearest neighbors

Finally,

  • Vector DB returns: Tiger, Cat (top matches)

In reality:

The Embedding models would not have 2D instead it would have 768D, 1536D, etc.

Uses optimized algorithms like:

  • ANN (Approximate Nearest Neighbor)
  • KNN (K Nearest Neighbor)

Is Vector DB mandatory for RAG?

RAG (Retrieval-Augmented Generation) is an approach/architecture. In one of the approach we use the Vector DB to retrieve the relevant Data.

Here Vector DB used in the retriever layer to perform semantic search.

Instead of Vector DB, RAG can also use:

  • Keyword search (like SQL LIKE)
  • APIs or databases

So to have clear understanding,

RAG is not just a LLM + Vector DB
Instead,
RAG is LLM + Retrieval (Vector DB is one way to do retrieval)

So, RAG is an approach where an LLM retrieves relevant external data (often using a vector database) and uses it to generate more accurate, context-aware responses.

Summary

A Vector Database performs similarity search by representing data (such as text, images, or audio as chunks) as high dimensional vectors. If we consider that as a multi dimensional space, each item is stored as a point in this space.
When a query is given, it is also converted into a vector, and the database uses similarity metrics such as cosine similarity to measure how close the query vector is to other vectors.
Based on this, it retrieves the most relevant results by selecting the vectors that are closest in terms of semantic meaning.