Files
nexus/wiki/entities/Qdrant.md

1.3 KiB
Raw Blame History

title, type, tags, sources, last_updated
title type tags sources last_updated
Qdrant entity
vector-database
rag
rust
open-source
RAG从入门到精通系列1基础RAG
2026-04-16

Basic Information

  • Type: Vector Database
  • Source: RAG从入门到精通系列1基础RAG

Definition

Qdrant is an open-source vector database written in Rust, designed for storing and searching high-dimensional embedding vectors with high performance.

Key Features

  • Written in Rust: High performance and memory safety
  • Vector Search: Supports similarity search with various metrics
  • Open Source: Freely available for self-hosting
  • RAG Integration: Commonly used as the vector store in RAG pipelines

Technical Details

  • Implements various similarity comparison methods for embedding vectors
  • Supports Top-k retrieval (returning k most similar results)
  • Can store metadata alongside vectors
  • 向量数据库Qdrant is a specific vector database implementation
  • EmbeddingQdrant stores embedding vectors
  • RAGQdrant serves as the storage layer in RAG systems
  • LangChainLangChain can integrate with Qdrant as a vector store
  • BAAIEmbedding models that feed data into Qdrant
  • QwenLLM that queries Qdrant via retrieval