Clustron.DKV.SDK 0.2.3

dotnet add package Clustron.DKV.SDK --version 0.2.3
                    
NuGet\Install-Package Clustron.DKV.SDK -Version 0.2.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Clustron.DKV.SDK" Version="0.2.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Clustron.DKV.SDK" Version="0.2.3" />
                    
Directory.Packages.props
<PackageReference Include="Clustron.DKV.SDK" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Clustron.DKV.SDK --version 0.2.3
                    
#r "nuget: Clustron.DKV.SDK, 0.2.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Clustron.DKV.SDK@0.2.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Clustron.DKV.SDK&version=0.2.3
                    
Install as a Cake Addin
#tool nuget:?package=Clustron.DKV.SDK&version=0.2.3
                    
Install as a Cake Tool

Clustron.DKV.SDK

Clustron.DKV.SDK is the complete SDK package for Clustron DKV.

It bundles the core client and in-process runtime, allowing you to get started quickly with both embedded (InProc) and distributed (Remote) modes.


Installation

dotnet add package Clustron.DKV.SDK

Quick Start (InProc)

using Clustron.DKV.Client.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;

var services = new ServiceCollection()
    .AddClustronDkvStores(cfg =>
        cfg.AddStore("demo", s => s.UseInProc()))
    .BuildServiceProvider();

var client = await services
    .GetRequiredService<IDkvClientProvider>()
    .GetAsync("demo");

await client.PutAsync("hello", "world");

var value = await client.GetAsync<string>("hello");

Console.WriteLine(value);

Connect to Cluster (Remote)

cfg.AddStore("demo", s =>
    s.UseRemote()
     .AddServer("localhost", 7861));

Overview

  • Includes Client + InProc runtime
  • Single package for most applications
  • Supports both embedded and distributed modes
  • Designed for modern .NET applications using dependency injection

When to Use SDK

Use this package when:

  • You want a single package instead of managing multiple dependencies
  • You are starting a new project
  • You need both InProc and Remote capabilities

  • Clustron.DKV.Client (client only)
  • Clustron.DKV.InProc (embedded runtime only)
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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
0.2.3 190 3/26/2026