NTDLS.KitKey.Server
1.1.0
See the version list below for details.
dotnet add package NTDLS.KitKey.Server --version 1.1.0
NuGet\Install-Package NTDLS.KitKey.Server -Version 1.1.0
<PackageReference Include="NTDLS.KitKey.Server" Version="1.1.0" />
paket add NTDLS.KitKey.Server --version 1.1.0
#r "nuget: NTDLS.KitKey.Server, 1.1.0"
// Install NTDLS.KitKey.Server as a Cake Addin #addin nuget:?package=NTDLS.KitKey.Server&version=1.1.0 // Install NTDLS.KitKey.Server as a Cake Tool #tool nuget:?package=NTDLS.KitKey.Server&version=1.1.0
KitKey
Ever wondered what it would be like if Redis hadn't become a fat beast? 👊💩
Well, we wanted to keep it simple and really target the .net environment... so we wrote KitKey. A low latency, high-performance, and reliable persistent or ephemeral key-value store over TCP/IP utilizing RocksDB for persistence, wrapped in a partitioned memory cache for level-1 caching, an optional web-service API, management interface, and accompanying nuget packages for server and client.
You can run the KitKey server either from the nuget package or by downloading the dedicated service installer
KitKey key-value stores are "strongly typed", it supports stores for int32, int64, float, double, date-time and guid. In addition to single value key-value stores, KeyKey also supports lists of values for a single key, where you can push-first, push-last, get the entire list, get the first or last item and of course remove items from the list.
Testing Status
Packages 📦
- Server: https://www.nuget.org/packages/NTDLS.KitKey.Server
- Client: https://www.nuget.org/packages/NTDLS.KitKey.Client
See also:
Server
Besides running the dedicated service using the installer, you can run the server from code:
var serverConfig = new KkServerConfiguration()
{
PersistencePath = Path.GetDirectoryName(Environment.ProcessPath)
};
var server = new KkServer(serverConfig);
server.Start(KkDefaults.DEFAULT_KEYSTORE_PORT);
Console.WriteLine("Press [enter] to stop.");
Console.ReadLine();
server.Stop();
Client (single value)
The client is quite configurable, but the basic connection, store creation and get, set, delete it straight forward.
var client = new KkClient();
client.Connect("localhost", KkDefaults.DEFAULT_KEYSTORE_PORT);
var storeConfig = new KkStoreConfiguration("MyFirstStore")
{
PersistenceScheme = KkPersistenceScheme.Ephemeral,
ValueType = KkValueType.String
};
client.CreateStore(storeConfig);
for (int i = 0; i < 100000; i++)
{
var randomKey = Guid.NewGuid().ToString().Substring(0, 4);
var randomValue = Guid.NewGuid().ToString();
//Add a string value
client.Set("MyFirstStore", randomKey, randomValue);
//Get the value we just set.
var retrievedValue = client.Get<string>("MyFirstStore", randomKey);
}
Console.WriteLine("Press [enter] to stop.");
Console.ReadLine();
client.Disconnect();
Getting, setting, and deleting a key-value to/from the key store server.
//Set a value:
client.Set("MyFirstStore", "Key_Name", "Some text value");
//Get a value:
var value = client.Get<string>("MyFirstStore", "Key_Name");
//Delete a value:
client.Remove("MyFirstStore", "Key_Name");
Client (list value)
KitKey also supports creating lists of values for a given key.
var client = new KkClient();
client.Connect("localhost", KkDefaults.DEFAULT_KEYSTORE_PORT);
var storeConfig = new KkStoreConfiguration("MyFirstStore")
{
PersistenceScheme = KkPersistenceScheme.Ephemeral,
ValueType = KkValueType.ListOfStrings
};
client.CreateStore(storeConfig);
for (int i = 0; i < 100000; i++)
{
var randomValue = Guid.NewGuid().ToString();
//Push a list item to the key-store. You can also PushFirst().
client.PushLast("MyFirstStore", "KeyOfListValue", randomValue);
//Get the value we just set.
var retrievedList = client.GetList<string>("MyFirstStore", "KeyOfListValue");
var firstListValue = client.GetLast<string>("MyFirstStore", "KeyOfListValue");
var lastListValue = client.GetFirst<string>("MyFirstStore", "KeyOfListValue");
//Remove item from the list.
client.RemoveListItemByKey("MyFirstStore", "KeyOfListValue", lastListValue.Id);
}
Console.WriteLine("Press [enter] to stop.");
Console.ReadLine();
client.Disconnect();
Screenshots
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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 is compatible. 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. |
-
net8.0
- NTDLS.FastMemoryCache (>= 1.9.0)
- NTDLS.KitKey.Shared (>= 1.1.0)
- RocksDB (>= 9.7.3.54622)
-
net9.0
- NTDLS.FastMemoryCache (>= 1.9.0)
- NTDLS.KitKey.Shared (>= 1.1.0)
- RocksDB (>= 9.7.3.54622)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release.