Files
zapdb/doc.go
T
AwnandManish R Jain 31ca5306ca Make badger go-gettable (#85)
* Make package go-gettable

* Remove leftover ./badger folder

* Fix tests
2017-07-01 20:32:11 +10:00

11 lines
578 B
Go

/*
Package badger implements an embeddable, simple and fast key-value store, written natively in Go.
It is designed to be highly performant for both reads and writes simultaneously.
Badger uses LSM tree, along with a value log, to separate keys from values, hence reducing
both write amplification and the size of the LSM tree.
This allows LSM tree to be served entirely from RAM, while the values are served from SSD.
As values get larger, this results in increasingly faster Set() and Get() performance than top
of the line KV stores in market today.
*/
package badger