Skip to content

sinner-/tinykv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

tinykv

Tiny K/V store in golang

Example usage

$ telnet 127.0.0.1 9999
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
PUT somekey someval   
PUT someotherkey someotherval
PUT foo bar
GET foo
bar
LIST
someotherkey: someotherval
foo: bar
somekey: someval
DEL somekey
LIST
someotherkey: someotherval
foo: bar
^]
telnet> Connection closed.

About

Tiny K/V store in golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages