Skip to content

thisisprasad/In-Memory-Transactional-Key-value-Store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple Key/Value store in golang

Store

An interactive shell based transactional in-memory key/value store inspired from here. here.

An example script.

> set val1 30
> set val2 55
> begin
> set val1 100
> get val1
100
> commit
> begin
> set val2 200
> get val2
200
> end
> get val2
55
> get val1
100

How to use

  1. Clone the project
  2. Open the folder in command prompt
  3. Run "go build"
  4. Run "KeyValueStore" to run the shell.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages