Mythosia.VectorDb.Qdrant
2.0.0
See the version list below for details.
dotnet add package Mythosia.VectorDb.Qdrant --version 2.0.0
NuGet\Install-Package Mythosia.VectorDb.Qdrant -Version 2.0.0
<PackageReference Include="Mythosia.VectorDb.Qdrant" Version="2.0.0" />
<PackageVersion Include="Mythosia.VectorDb.Qdrant" Version="2.0.0" />
<PackageReference Include="Mythosia.VectorDb.Qdrant" />
paket add Mythosia.VectorDb.Qdrant --version 2.0.0
#r "nuget: Mythosia.VectorDb.Qdrant, 2.0.0"
#:package Mythosia.VectorDb.Qdrant@2.0.0
#addin nuget:?package=Mythosia.VectorDb.Qdrant&version=2.0.0
#tool nuget:?package=Mythosia.VectorDb.Qdrant&version=2.0.0
Mythosia.VectorDb.Qdrant
Qdrant vector store implementation for the Mythosia VectorDb abstraction layer.
Uses a single Qdrant collection (physical container) with payload-based logical isolation:
_namespace— first-tier logical partition_scope— second-tier logical partition
Migration from v1.0.0
v1.0.0 collections are dense-only. v2.0.0 uses hybrid-capable collections and writes a schema marker so the tooling can detect whether migration is needed.
Install the migration tool first:
Install-Package Mythosia.VectorDb.Tools
If docs is the collection you want to migrate, run:
mythosia-vectordb migrate qdrant --endpoint localhost:6334 --source docs --replace
This migrates through a staging collection, then recreates docs with the new schema and copies the migrated data back into docs.
If your Qdrant server is remote or authenticated, add --api-key your-api-key and use your remote endpoint URL.
Stop application writes before migration if consistency matters.
Installation
dotnet add package Mythosia.VectorDb.Qdrant
Current package version:
dotnet add package Mythosia.VectorDb.Qdrant --version 2.0.0
Quick Start
using Mythosia.VectorDb;
using Mythosia.VectorDb.Qdrant;
// 1. Configure — CollectionName is the physical Qdrant collection
var options = new QdrantOptions
{
Host = "localhost",
Port = 6334,
CollectionName = "my_vectors", // physical collection
Dimension = 1536, // must match your embedding model
DistanceStrategy = QdrantDistanceStrategy.Cosine
};
// 2. Create the store
using var store = new QdrantStore(options);
// 3. Upsert records — "documents" is a logical namespace within the collection
var record = new VectorRecord("doc-1", embedding, "Hello world");
await store.InNamespace("documents").UpsertAsync(record);
// 4. Search
var results = await store.InNamespace("documents")
.SearchAsync(queryVector, topK: 5);
Options
| Property | Default | Description |
|---|---|---|
Host |
"localhost" |
Qdrant server host |
Port |
6334 |
Qdrant gRPC port |
UseTls |
false |
Enable TLS for gRPC |
ApiKey |
null |
Optional API key |
CollectionName |
(required) | Qdrant collection name (physical container) |
Dimension |
(required) | Embedding vector dimension |
DistanceStrategy |
Cosine |
Cosine, Euclidean, or DotProduct |
AutoCreateCollection |
true |
Auto-create the collection on first use |
Hybrid Search (v2.0.0)
QdrantStore always provisions/uses hybrid-capable storage (dense + sparse) and supports native IVectorStore.HybridSearchAsync.
Choose retrieval mode at query time (SearchAsync for vector-only, HybridSearchAsync for native hybrid):
var options = new QdrantOptions
{
Host = "localhost",
Port = 6334,
CollectionName = "my_vectors",
Dimension = 1536
};
var store = new QdrantStore(options);
On upsert, BM25 sparse vectors are automatically computed from the record's Content and stored alongside the dense embedding. Hybrid search uses Qdrant's built-in prefetch + fusion (RRF/DBSF) for server-side scoring.
When used via the RAG pipeline:
var store = await RagStore.BuildAsync(config => config
.AddDocument("docs.txt")
.UseOpenAIEmbedding(apiKey)
.UseVectorStore(new QdrantStore(new QdrantOptions
{
Host = "localhost",
Dimension = 1536
}))
.UseHybridSearch()
);
Scope & Metadata Filtering
// Scope isolation (2nd-tier within namespace)
await store.InNamespace("docs").InScope("tenant-1").UpsertAsync(record);
var results = await store.InNamespace("docs").InScope("tenant-1")
.SearchAsync(queryVector, topK: 10);
// Metadata filtering
var filter = VectorFilter.ByMetadata("category", "science");
var results = await store.InNamespace("docs")
.SearchAsync(queryVector, topK: 5, filter: filter);
// Minimum score threshold
var filter = new VectorFilter { MinScore = 0.7 };
var results = await store.InNamespace("docs")
.SearchAsync(queryVector, topK: 5, filter: filter);
Advanced: Inject a Pre-configured Client
using Qdrant.Client;
var client = new QdrantClient("my-qdrant-cloud.example.com", 6334, https: true, apiKey: "my-key");
var store = new QdrantStore(options, client);
// The caller is responsible for disposing the QdrantClient.
Payload Layout
Records are stored as Qdrant points with the following payload keys:
| Key | Description |
|---|---|
_id |
Original string record ID |
_namespace |
Logical namespace for first-tier isolation (omitted if null) |
_content |
Text content |
_scope |
Scope value for second-tier isolation (omitted if null) |
meta.<key> |
User metadata entries |
ID Mapping
Point IDs are deterministic UUIDs derived from namespace + record Id (when namespace is set) or just record Id (when null) via MD5 hash. This ensures the same record Id in different namespaces produces distinct points within the shared collection. The original string ID is preserved in the _id payload field.
License
See repository root for license information.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Mythosia.VectorDb.Abstractions (>= 2.0.0)
- Qdrant.Client (>= 1.17.0)
- System.IO.Hashing (>= 10.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v2.0.0: Introduces hybrid-by-default Qdrant storage, native HybridSearchAsync, and the Mythosia.VectorDb.Tools CLI for migrate/copy workflows. If you are upgrading from v1.0.0, you must read the README migration section.