Mythosia.VectorDb.Qdrant
1.0.0
dotnet add package Mythosia.VectorDb.Qdrant --version 1.0.0
NuGet\Install-Package Mythosia.VectorDb.Qdrant -Version 1.0.0
<PackageReference Include="Mythosia.VectorDb.Qdrant" Version="1.0.0" />
<PackageVersion Include="Mythosia.VectorDb.Qdrant" Version="1.0.0" />
<PackageReference Include="Mythosia.VectorDb.Qdrant" />
paket add Mythosia.VectorDb.Qdrant --version 1.0.0
#r "nuget: Mythosia.VectorDb.Qdrant, 1.0.0"
#:package Mythosia.VectorDb.Qdrant@1.0.0
#addin nuget:?package=Mythosia.VectorDb.Qdrant&version=1.0.0
#tool nuget:?package=Mythosia.VectorDb.Qdrant&version=1.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
Installation
dotnet add package Mythosia.VectorDb.Qdrant
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 |
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)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 29 | 3/6/2026 |