Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 316 Bytes

README.md

File metadata and controls

42 lines (33 loc) · 316 Bytes

mylsm

Simple implementation of LSM-Tree.

Usage

Put

$ go run ./...
>put key=foo
ok

Get

$ go run ./...
>put key=foo
ok
>get key
foo true

Delete

$ go run ./...    
>put key=foo
ok
>get key
foo true
>del key
ok
>get key
 false

Test

$ go test ./... -v