SharpCoreDB.VectorSearch
2.1.0-RC.3
dotnet add package SharpCoreDB.VectorSearch --version 2.1.0-RC.3
NuGet\Install-Package SharpCoreDB.VectorSearch -Version 2.1.0-RC.3
<PackageReference Include="SharpCoreDB.VectorSearch" Version="2.1.0-RC.3" />
<PackageVersion Include="SharpCoreDB.VectorSearch" Version="2.1.0-RC.3" />
<PackageReference Include="SharpCoreDB.VectorSearch" />
paket add SharpCoreDB.VectorSearch --version 2.1.0-RC.3
#r "nuget: SharpCoreDB.VectorSearch, 2.1.0-RC.3"
#:package SharpCoreDB.VectorSearch@2.1.0-RC.3
#addin nuget:?package=SharpCoreDB.VectorSearch&version=2.1.0-RC.3&prerelease
#tool nuget:?package=SharpCoreDB.VectorSearch&version=2.1.0-RC.3&prerelease
SharpCoreDB.VectorSearch v2.1.0-RC.3
SIMD-Accelerated Vector Similarity Search
Semantic search and similarity matching 50-100x faster than SQLite using HNSW indexing and SIMD acceleration.
Patch updates in v1.9.5 (archived; current release v2.1.0-RC.3)
- ✅ Parameterized query binding fixed (Issue #336): named-parameter binding is token-aware, so parameter names that are prefixes of others (e.g.
@tvs@tid) no longer corrupt the SQL. - ✅ Server parameter pass-through fixed (Issue #337):
request.Parametersare forwarded on gRPC, the binary (PostgreSQL) protocol and WebSocket. - ✅ ULID encoding is now standards-compliant: ULIDs follow the official Crockford Base32 spec and are interchangeable with Python/Java/Go implementations.
- ✅ NuGet dependencies updated to their latest stable versions.
- ✅ Aligned package metadata and version references to the synchronized 1.9.5 release line.
- ✅ Release automation now publishes all packable SharpCoreDB packages in CI/CD.
Features
- ✅ Inherits metadata improvements from SharpCoreDB v1.9.5
- ✅ Phase 8 complete: HNSW-accelerated semantic search
- ✅ 50-100x faster than SQLite
- ✅ NativeAOT compatible
- ✅ Zero breaking changes
🚀 Key Features
- HNSW Indexing: Hierarchical Navigable Small World graphs
- SIMD Acceleration: Vectorized distance calculations
- Semantic Search: Find similar embeddings efficiently
- Scalability: Millions of vectors, sub-millisecond queries
- Production Ready: 1,468+ tests, enterprise reliability
🎯 Use Cases
- RAG Systems: Knowledge base semantic search
- Recommendation Engines: Find similar products/content
- Duplicate Detection: Identify similar records
- Clustering: Group similar embeddings
- AI Applications: LLM-powered semantic search
📊 Performance
- Search Latency: Sub-millisecond for millions of vectors
- Index Size: 10-20% of raw vector data
- Build Time: Efficient incremental indexing
- Memory: Low-memory HNSW implementation
📚 Documentation
📦 Installation
dotnet add package SharpCoreDB.VectorSearch --version 2.1.0-RC.3
Requires: SharpCoreDB v1.9.5+
Version: 1.9.5 | Status: ✅ Production Ready | Phase: 8 Complete
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net11.0 is compatible. |
-
net11.0
- Microsoft.Extensions.DependencyInjection (>= 10.0.11)
- Microsoft.Extensions.Logging (>= 10.0.11)
- Microsoft.Extensions.ObjectPool (>= 10.0.11)
- SharpCoreDB (>= 2.1.0-RC.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SharpCoreDB.VectorSearch:
| Package | Downloads |
|---|---|
|
SharpCoreDB.Graph.Advanced
`SharpCoreDB.Graph` provides traversal and pathfinding; `SharpCoreDB.Graph.Advanced` adds analytics, centrality metrics, subgraph analysis, and GraphRAG with vector search integration. |
|
|
SharpCoreDB.HybridSearch
Hybrid (lexical + vector) retrieval for SharpCoreDB: runs the BM25 lexical leg and the vector leg and fuses them by rank with reciprocal-rank fusion. Pure managed C# 15 / .NET 11. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.1.0-RC.3 | 180 | 9/17/2026 |
| 2.0.0.3 | 185 | 9/12/2026 |
| 2.0.0.2 | 203 | 9/4/2026 |
| 2.0.0.1 | 298 | 9/1/2026 |
| 2.0.0 | 100 | 9/1/2026 |
| 2.0.0-preview.3 | 68 | 8/30/2026 |
| 2.0.0-preview.2 | 69 | 8/30/2026 |
| 2.0.0-preview.1 | 64 | 8/29/2026 |
| 1.9.9 | 121 | 8/30/2026 |
| 1.9.8 | 138 | 8/29/2026 |
| 1.9.7 | 118 | 8/29/2026 |
| 1.9.6 | 129 | 8/28/2026 |
| 1.9.5 | 132 | 8/27/2026 |
| 1.9.4 | 124 | 8/22/2026 |
| 1.9.3 | 138 | 7/28/2026 |
| 1.9.2 | 188 | 6/7/2026 |
| 1.9.1 | 135 | 5/21/2026 |
| 1.9.0 | 125 | 5/20/2026 |
| 1.8.0 | 166 | 4/29/2026 |
| 1.7.2 | 160 | 4/28/2026 |
v2.1 RC (2026-09-13): Munarium-inspired native C# features - DiskAnn index type, content-verified artifacts (canonical manifest + SHA256 artifact_id + verification), hybrid fusion weights, C# 15 record-based BuildResult for strict error handling. All changes are pure managed .NET 11 / C# 15 on the release/v2.1.0.0 branch. See docs/Vectors/MUNARIUM_INSPIRATION_PLAN.md.