bitcask-mirror/README.md

110 lines
2.3 KiB
Markdown
Raw Normal View History

2019-03-09 12:41:59 +00:00
# bitcask
[![Build Status](https://cloud.drone.io/api/badges/prologic/bitcask/status.svg)](https://cloud.drone.io/prologic/bitcask)
[![CodeCov](https://codecov.io/gh/prologic/bitcask/branch/master/graph/badge.svg)](https://codecov.io/gh/prologic/bitcask)
[![Go Report Card](https://goreportcard.com/badge/prologic/bitcask)](https://goreportcard.com/report/prologic/bitcask)
[![GoDoc](https://godoc.org/github.com/prologic/bitcask?status.svg)](https://godoc.org/github.com/prologic/bitcask)
[![Sourcegraph](https://sourcegraph.com/github.com/prologic/bitcask/-/badge.svg)](https://sourcegraph.com/github.com/prologic/bitcask?badge)
2019-03-09 12:41:59 +00:00
A Bitcask (LSM+WAL) Key/Value Store written in Go.
## Features
* Embeddable
* Builtin CLI
2019-03-14 05:36:37 +00:00
* Builtin Redis-compatible server
2019-03-13 10:27:27 +00:00
* Predictable read/write performance
* Low latecny
* High throughput (See: [Performance](README.md#Performance)
2019-03-09 12:41:59 +00:00
## Install
```#!bash
$ go get github.com/prologic/bitcask
```
## Usage (library)
Install the package into your project:
```#!bash
$ go get github.com/prologic/bitcask
```
```#!go
package main
import (
"log"
"github.com/prologic/bitcask"
)
func main() {
db, _ := bitcask.Open("/tmp/db")
db.Set("Hello", []byte("World"))
db.Close()
}
```
See the [godoc](https://godoc.org/github.com/prologic/bitcask) for further
documentation and other examples.
## Usage (tool)
```#!bash
$ bitcask -p /tmp/db set Hello World
$ bitcask -p /tmp/db get Hello
World
```
2019-03-13 11:40:43 +00:00
## Usage (server)
There is also a builtin very simple Redis-compatible server called `bitcaskd`:
```#!bash
$ ./bitcaskd ./tmp
INFO[0000] starting bitcaskd v0.0.7@146f777 bind=":6379" path=./tmp
```
Example session:
```
$ telnet localhost 6379
Trying ::1...
Connected to localhost.
Escape character is '^]'.
SET foo bar
+OK
GET foo
$3
bar
DEL foo
:1
GET foo
$-1
PING
+PONG
QUIT
+OK
Connection closed by foreign host.
```
2019-03-09 12:41:59 +00:00
## Performance
Benchmarks run on a 11" Macbook with a 1.4Ghz Intel Core i7:
```
$ make bench
...
BenchmarkGet-4 300000 5065 ns/op 144 B/op 4 allocs/op
BenchmarkPut-4 100000 14640 ns/op 699 B/op 7 allocs/op
2019-03-09 12:41:59 +00:00
```
2019-03-13 10:27:27 +00:00
* ~180,000 reads/sec
2019-03-09 12:41:59 +00:00
* ~60,000 writes/sec
## License
bitcask is licensed under the [MIT License](https://github.com/prologic/bitcask/blob/master/LICENSE)