Auto-sync: 2026-04-27 20:02

This commit is contained in:
2026-04-27 20:02:52 +08:00
parent 5854781fa8
commit de7ebe9256
59 changed files with 2122 additions and 1325 deletions

View File

@@ -1,32 +1,25 @@
---
title: "Milvus"
type: entity
tags: [vector-db, embedding, rag, open-source]
sources: [semantic-memory-search]
last_updated: 2026-04-22
---
## Aliases
- Milvus
## Definition
Milvus 是开源的分布式向量数据库,专为相似性搜索场景设计,支持十亿级向量数据的存储与检索。是 [[memsearch]] 的底层向量存储和检索引擎。
## Key Characteristics
- **高维向量检索**:支持 ANN近似最近邻索引如 HNSW、IVF、PQ实现毫秒级检索
- **多索引类型**HNSW高召回高速度、IVF聚类加速、PQ压缩存储
- **分布式架构**:支持水平扩展,处理海量向量
- **多语言 SDK**Python、Go、Java、RESTful API
- **元数据过滤**:支持在向量检索的同时做属性过滤
## Role in RAG Stack
Milvus 作为向量数据库负责存储文档 Embedding 向量,在 [[Knowledge-Base-RAG]] 和 [[semantic-memory-search]] 场景中是检索层的核心基础设施。
## Connections
- [[memsearch]] — 使用 Milvus 作为向量后端的语义搜索库
- [[Vector-Embedding]] — Milvus 存储的向量来源
- [[Knowledge-Base-RAG]] — Milvus 作为知识库的向量存储层
- [[semantic-memory-search]] — Milvus 为 OpenClaw 记忆提供向量检索能力
---
title: "Milvus"
type: entity
tags: [database, vector-database, open-source]
---
## Overview
Milvus 是一个开源向量数据库专为高速向量相似度搜索设计。支持十亿级向量规模提供多种索引类型IVF、HNSW 等)。
## Key Features
- 高性能向量相似度搜索
- 支持多种索引类型
- 水平扩展能力
- 混合搜索支持(向量 + 结构化数据)
## Website
https://milvus.io/
## Related Entities
- [[memsearch]] — 基于 Milvus 的语义搜索工具
- [[memsearch]] ← built_on ← [[Milvus]]
## Related Concepts
- [[VectorSearch]] — 向量搜索技术
- [[RAG]] — 检索增强生成