Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

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

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages