Looking for something specific?
  Home
Home
Articles
Page Tag-Cloud
  Software
Software Tag-Cloud
Building from Source
Open Source Definition
All Software
  Popular Tags
Legacy
C Plus Plus
Source Code
Class
Cryptography
  Members
Login
Web-Email
Notable Members
  Official
Our Company
Copyright Information
Software EULA
GPL EULA
LGPL Eula
Pre-Release EULA
Privacy Policy
  Support
Make Contact
 
KitKey
Downloads   2
User Rating   (Rate)
Last Updated   1/11/2025
License   MIT License
- Download -
View all Releases
Recommended Release
Version   1.1.1
Date   1/11/2025
Status   Stable Stable software is believed to be stable and ready for production use.

This software is open source. You can obtain the latest source code from the GitHub repository or browse the releases for the source code associated with a specific release. If you make any changes which you feel improves this application, please let us know via our Contact Page.

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, KitKey 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

Regression Tests

Packages ??

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

image

image

License

MIT


Recent Releases:
 1.1.1    1.0.1  

Tags:
 Cache    Database    Key Value    Message Broker    Nosql  

No comments currently exists for this software. Why don't you add one?
First Previous Next Last 

 
Copyright © 2025 NetworkDLS.
All rights reserved.
 
Privacy Policy | Our Company | Contact