Milvus

Active
GitHub Go Apache-2.0

Description

Cloud-native vector database built for large-scale ANN search.

Key Features

  • Cloud-native — Storage-compute separation
  • Billion-scale — Industrial ANN performance
  • Multi-index — HNSW/IVF/DiskANN
  • GPU acceleration — GPU indexes supported
  • Hybrid search — Vector plus scalar

Use Cases

💡 Build billion-scale vector search.
💡 Choose a vector DB for RAG applications.
💡 Similarity search on image/video/audio.

Categories

Quick Start

pip install pymilvus
from pymilvus import MilvusClient
client = MilvusClient(uri='http://localhost:19530')

Related Projects