![]() |
VOOZH | about |
dotnet add package Encamina.Enmarcha.Data.Qdrant --version 10.0.5
NuGet\Install-Package Encamina.Enmarcha.Data.Qdrant -Version 10.0.5
<PackageReference Include="Encamina.Enmarcha.Data.Qdrant" Version="10.0.5" />
<PackageVersion Include="Encamina.Enmarcha.Data.Qdrant" Version="10.0.5" />Directory.Packages.props
<PackageReference Include="Encamina.Enmarcha.Data.Qdrant" />Project file
paket add Encamina.Enmarcha.Data.Qdrant --version 10.0.5
#r "nuget: Encamina.Enmarcha.Data.Qdrant, 10.0.5"
#:package Encamina.Enmarcha.Data.Qdrant@10.0.5
#addin nuget:?package=Encamina.Enmarcha.Data.Qdrant&version=10.0.5Install as a Cake Addin
#tool nuget:?package=Encamina.Enmarcha.Data.Qdrant&version=10.0.5Install as a Cake Tool
The Data Qdrant project contains functionalities related to the Qdrant vector database.
First, install NuGet. Then, install Encamina.Enmarcha.Data.Qdrant from the package manager console:
PM> Install-Package Encamina.Enmarcha.Data.Qdrant
First, install .NET CLI. Then, install Encamina.Enmarcha.Data.Qdrant from the .NET CLI:
dotnet add package Encamina.Enmarcha.Data.Qdrant
Qdrant vector database supports creating snapshots, which consist in a .snapshot archive file containing the necessary data to restore the collection at the time of the snapshot. This handler allows you to take snapshots of Qdrant. First, you need to add the to your project configuration. You can achieve this by using any configuration provider. The followng code is an example of how the settings would appear using the appsettings.json file:
// ...
"QdrantOptions": {
"Host": "https://sample-qdrant.azurewebsites.net/", // Endpoint protocol and host
"Port": 6333, // Endpoint port
"VectorSize": 1536, // Vector size
"ApiKey": "xxxxxxxxxx" // API Key used by Qdrant as a form of client authentication.
},
// ...
Starting from a Program.cs or a similar entry point file in your project, add the following code:
// Entry point
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
// ...
});
// ...
// Or others configuration providers...
builder.Configuration.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
builder.Services.AddOptions<QdrantOptions>().Bind(builder.Configuration.GetSection(nameof(QdrantOptions)))
.ValidateDataAnnotations()
.ValidateOnStart();
services.AddQdrantSnapshotHandler();
This extension method will add the implementation of the interface as a singleton, in addition to configuring an HttpClient with so that the handler can use the Qdrant REST API. The implementation is . With this, it can resolve the IQdrantSnapshotHandler interface and take snapshots:
public class MyClass
{
private readonly IQdrantSnapshotHandler qdrantSnapshotHandler;
public MyClass(IQdrantSnapshotHandler qdrantSnapshotHandler)
{
this.qdrantSnapshotHandler = qdrantSnapshotHandler;
}
public async Task TestQdrantSnapshotAsync()
{
await qdrantSnapshotHandler.CreateCollectionSnapshotAsync("my-collection-1", CancellationToken.None);
}
}
The previous code creates a snapshot of the 'my-collection-1' collection.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.5 | 100 | 6/1/2026 |
| 10.0.4 | 129 | 4/8/2026 |
| 10.0.3 | 113 | 4/6/2026 |
| 10.0.2 | 326 | 12/17/2025 |
| 10.0.1 | 319 | 12/17/2025 |
| 10.0.0 | 312 | 12/16/2025 |
| 10.0.0-preview-09 | 441 | 11/19/2025 |
| 10.0.0-preview-08 | 421 | 11/18/2025 |
| 10.0.0-preview-07 | 216 | 10/22/2025 |
| 10.0.0-preview-06 | 213 | 10/14/2025 |
| 10.0.0-preview-05 | 205 | 10/8/2025 |
| 10.0.0-preview-04 | 202 | 10/7/2025 |
| 10.0.0-preview-03 | 341 | 9/16/2025 |
| 10.0.0-preview-02 | 339 | 9/16/2025 |
| 8.3.0 | 243 | 9/10/2025 |
| 8.3.0-preview-02 | 204 | 9/10/2025 |
| 8.3.0-preview-01 | 193 | 9/8/2025 |
| 8.2.1-preview-08 | 202 | 8/18/2025 |
| 8.2.1-preview-07 | 203 | 8/12/2025 |