Skip to content

Key Value Notation (KVN) based storage for .NET.

Notifications You must be signed in to change notification settings

Tylertron1998/KVN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Everyone hates KVN

KVN (Key Value Notation) is a JSON backed, simple to use, key value storage solution for .NET.

var settings = new DatabaseSettings("./path/to/file.json");
var instance = new DatabaseInstance<MyPoco>(settings);

long id = 1;

var poco = new MyPoco { Value = "Hello, .NET!" };

instance[id] = poco;

// call .SaveChanges to commit your changes.

instance.SaveChanges();

Console.WriteLine(instance[id]); // Hello, .NET!

KVN aims to be thread safe, fast, and easy to use.

About

Key Value Notation (KVN) based storage for .NET.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages