Adding Semantic Search to Your Postgres App with pgvector —…
    Neura MarketNeura Market/DeepSeek
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsGamesBlogVideosGuidesCoursesCommunityTrending
    DeepSeekBlogAdding Semantic Search to Your Postgres App with pgvector
    Back to Blog
    Adding Semantic Search to Your Postgres App with pgvector
    postgres

    Adding Semantic Search to Your Postgres App with pgvector

    Ryan Carter April 28, 2026
    0 views

    How to add vector similarity search to an existing Postgres app using pgvector — covering extension setup, embedding generation, cosine similarity queries, and HNSW indexing for performance.


    title: "Adding Semantic Search to Your Postgres App with pgvector" published: true description: "How to add vector similarity search to an existing Postgres app using pgvector — covering extension setup, embedding generation, cosine similarity queries, and HNSW indexing for performance." tags: postgres, ai, database, tutorial canonical_url: https://stormcloudy.com/post/adding-semantic-search-postgres-pgvector

    pgvector is a Postgres extension that adds vector storage and similarity search to an existing database, so you can run semantic queries directly against your application data without standing up a separate vector store. If you're already on Postgres, you can enable it with one CREATE EXTENSION statement, add a vector column to any table, and have semantic search returning results the same day.

    This post walks through adding it to an existing app — from installing the extension to running your first semantic query, with an HNSW index for performance at scale.

    TL;DR

    • What it is: A Postgres extension that adds a vector column type and similarity-search operators (<=>, <->, <#>).
    • Why it matters: Semantic search without a separate vector database, hybrid keyword-and-semantic queries in one SQL statement, and no new service to operate.
    • Five steps to ship it: Install the extension, add a vector(N) column, embed at write time, query with cosine similarity, add an HNSW index for scale.
    • Embedding cost: ~$0.02 per million tokens with text-embedding-3-small. Ollama runs embedding models locally for free if you'd rather not depend on a provider.
    • When to upgrade beyond pgvector: Tens of millions of vectors with sub-50ms latency requirements. Below that, pgvector is plenty.

    What's the difference between keyword search and semantic search?

    Keyword search finds exact matches. If a user searches "cholesterol prescription" and your record says "lipid panel results," they get nothing.

    Semantic search finds meaning. It understands that "cholesterol prescription" and "lipid panel results" are related concepts, and surfaces the right record even without a word match.

    That's what vector embeddings buy you. Instead of storing text, you store a numerical representation of what that text means. Search becomes a question of mathematical similarity rather than string matching.

    Step 1: Enable the extension

    If you're running Postgres locally or in Docker, install pgvector first:

    # Ubuntu / Debian
    sudo apt install postgresql-16-pgvector
    
    # or via Docker — use the pgvector image instead of plain postgres
    # docker pull pgvector/pgvector:pg16
    

    Then enable it in your database:

    CREATE EXTENSION IF NOT EXISTS vector;
    

    That's it. No separate service, no new connection string.

    Step 2: Add an embedding column to your table

    Pick whichever table holds the content you want to make searchable. Add a vector column — the dimension count needs to match the embedding model you'll use.

    OpenAI's text-embedding-3-small outputs 1536 dimensions:

    ALTER TABLE documents ADD COLUMN embedding vector(1536);
    

    If you use a different model, check its output dimension and use that number instead. The dimension has to be consistent — you can't mix embeddings from different models in the same column.

    Step 3: Generate embeddings when content is saved

    Whenever a record is created or updated, generate an embedding from its text content and store it. Here's a Node.js example using the OpenAI SDK:

    import OpenAI from "openai";
    const openai = new OpenAI();
    
    async function generateEmbedding(text) {
      const response = await openai.embeddings.create({
        model: "text-embedding-3-small",
        input: text,
      });
      return response.data[0].embedding;
    }
    
    async function saveDocument(db, doc) {
      // Build a text representation of what you want to be searchable
      const textToEmbed = `${doc.title} ${doc.tags.join(" ")} ${doc.content}`;
      const embedding = await generateEmbedding(textToEmbed);
    
      await db.query(
        `INSERT INTO documents (title, content, tags, embedding)
         VALUES ($1, $2, $3, $4)`,
        [doc.title, doc.content, doc.tags, JSON.stringify(embedding)]
      );
    }
    

    A few things worth noting here:

    • What you embed matters. Concatenating title, tags, and content into one string gives the model more signal than just the raw content. Experiment with what makes your search results feel right.
    • Embed at write time, not search time. Pre-computing embeddings keeps search fast. You don't want to embed on every query.
    • If you have existing records, run a backfill script to generate embeddings for everything already in the database before you go live.

    Step 4: Search with cosine similarity

    When a user submits a search query, embed it the same way you embedded your content, then find the closest matches:

    async function semanticSearch(db, query, limit = 10) {
      const queryEmbedding = await generateEmbedding(query);
    
      const result = await db.query(
        `SELECT id, title, content,
                1 - (embedding <=> $1) AS similarity
         FROM documents
         ORDER BY embedding <=> $1
         LIMIT $2`,
        [JSON.stringify(queryEmbedding), limit]
      );
    
      return result.rows;
    }
    

    The <=> operator is cosine distance — lower means more similar. The 1 - (embedding <=> $1) gives you a similarity score between 0 and 1 if you want to display or filter by confidence.

    Step 5: Add an index for performance

    Without an index, Postgres does an exact nearest-neighbor scan across every row — fine for small tables, slow for large ones. Add an HNSW index to keep queries fast at scale:

    CREATE INDEX ON documents
    USING hnsw (embedding vector_cosine_ops);
    

    HNSW (Hierarchical Navigable Small World) is an approximate nearest-neighbor algorithm. It trades a tiny amount of recall accuracy for a large speed gain. For most applications the tradeoff is well worth it.

    Putting it together

    Here's what the full flow looks like:

    1. User saves a document → you generate an embedding → store it in the embedding column
    2. User searches → you embed the query → run cosine similarity against stored embeddings → return top matches
    3. Results feel like the app actually understands what the user is looking for

    A few things to keep in mind

    Embedding cost is low but not zero. OpenAI's text-embedding-3-small is cheap — around $0.02 per million tokens — but it adds up at scale. If you're embedding large documents frequently, keep an eye on usage.

    Local embeddings are an option. If you want to keep everything in-house, Ollama can run embedding models locally. The quality varies by model, but for many use cases it's more than good enough and costs nothing per query.

    Hybrid search is often better. Semantic search alone can miss exact matches that keyword search would catch. For production apps, consider combining both — run a keyword search with tsvector and a vector search with pgvector, then merge and rank the results. This is sometimes called hybrid search or reciprocal rank fusion.

    Chunking matters for long documents. Embedding a 10,000-word document as a single vector loses a lot of nuance. For long content, chunk it into paragraphs or sections, embed each chunk separately, and link chunks back to the parent document.


    pgvector is one of those things that looks complicated from the outside but is surprisingly approachable once you start. If you're already on Postgres, there's no reason not to have it.

    FAQ

    Do I need a separate vector database if I'm already using Postgres?

    For most apps, no. pgvector handles tens of millions of vectors comfortably with an HNSW index, and you keep the operational simplicity of one database. You'd reach for a dedicated vector store (Pinecone, Weaviate, Qdrant, Milvus) only when you need extreme scale, very low latency, or specialized features like hybrid sparse/dense indexing that pgvector doesn't cover.

    Which embedding model should I use with pgvector?

    For most production use cases, OpenAI's text-embedding-3-small (1536 dims) is the default — cheap, fast, and high quality. Use text-embedding-3-large (3072 dims) if you need more accuracy and can pay for it. For local/private deployments, Ollama running nomic-embed-text or mxbai-embed-large is a solid choice. The dimension number in your column type has to match the model.

    What's the difference between HNSW and IVFFlat indexes?

    HNSW is faster to query and gives better recall, but takes longer to build and uses more memory. IVFFlat is faster to build, lighter on memory, but slower to query and less accurate. For most production workloads, HNSW is the right default. IVFFlat is fine if you're indexing very large datasets infrequently and care about build time.

    Should I use cosine, L2, or inner product distance?

    Cosine distance (<=>) is the right default for text embeddings — it ignores vector magnitude and only compares direction, which matches how text embedding models are trained. Use L2 (<->) for image embeddings or anything where magnitude carries meaning. Inner product (<#>) is fastest when your vectors are normalized but identical to cosine in that case.

    Do I need to re-embed when I update a record?

    Only if the text you embedded changed. The cleanest pattern is to embed a derived "search text" string (title + tags + content), and re-embed whenever any of those source fields change. A trigger or BEFORE UPDATE hook keeps it in sync.

    Can I combine semantic search with regular SQL filters?

    Yes — that's one of pgvector's biggest advantages. You can WHERE user_id = $1 AND status = 'active' ORDER BY embedding <=> $2 LIMIT 10 and get filtered semantic search in one query. With a separate vector store, you'd have to filter in two places and reconcile.

    Tags

    postgresaidatabasetutorial

    Comments

    More Blog

    View all
    Five Gemma-4 models, one accelerator: what porting E2B 31B to AWS Inferentia2 taught megemma

    Five Gemma-4 models, one accelerator: what porting E2B 31B to AWS Inferentia2 taught me

    I ported the whole Gemma-4 family — E2B, E4B, 12B, 31B, and the 26B-A4B MoE — to run on...

    X
    xbill
    Hey DEV, I'm Tobore. Let's actually connect.community

    Hey DEV, I'm Tobore. Let's actually connect.

    Hey DEV, I'm Tobore. Let's actually connect. I've been on here for a while now, mostly writing and...

    L
    Laurina Ayarah
    I burned through thousands of AI tokens. Then a friend did it for freeai

    I burned through thousands of AI tokens. Then a friend did it for free

    (yep, kinda clickbait, just for the funsies 😊) At the beginning of the year, I relaunched my...

    P
    Paulo Henrique
    Claude might be saturating your machineai

    Claude might be saturating your machine

    My laptop was sitting idle with the fan at full tilt. Nothing was running that I knew of. The culprit...

    S
    Sidhant Panda
    Automated GitHub Code Reviews Using Google Geminigithubactions

    Automated GitHub Code Reviews Using Google Gemini

    I Built a Thing! TL;DR — Google Gemini-based Pull Request reviews and Issue Triaging for...

    D
    Darren "Dazbo" Lester
    What is an "agentic harness," actually?ai

    What is an "agentic harness," actually?

    I've been hearing the word "harness" thrown around a lot lately. I assumed it just meant "the IDE" or...

    T
    Tilde A. Thurium

    Stay up to date

    Get the latest DeepSeek prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for DeepSeek and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Neura Market

    Custom AI Systems & Services

    Our team of experienced AI builders will help build custom AI systems, workflows, and solutions for your business.

    Request custom work

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this DeepSeek resource

    • LinkedIn Lead Generation: Auto DM System with Comment Triggers using Unipile & NocoDBn8n · $24.99 · Related topic
    • End-to-End Blog Generation for WordPress with LLM Agents & Image - GP-5 Optimizedn8n · $24.99 · Related topic
    • Automated Blog Post Generation with GPT-4 and Publishing to Ghost CMSn8n · $4.99 · Related topic
    • Automate Image and Blog Generation via Telegram with Pollinations and Geminin8n · $24.99 · Related topic
    Browse all workflows