2013-11-26 13:55:20 +00:00
|
|
|
unqlitego
|
|
|
|
=========
|
|
|
|
|
|
|
|
UnQLite Binding for golang.
|
2013-11-26 14:04:27 +00:00
|
|
|
|
|
|
|
Install
|
|
|
|
---------
|
|
|
|
|
|
|
|
```sh
|
2013-11-26 14:32:24 +00:00
|
|
|
go get -d github.com/nobonobo/unqlitego
|
2013-11-26 14:04:27 +00:00
|
|
|
cd $GOPATH/src/github.com/nobonobo/unqlitego
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
|
|
|
make
|
|
|
|
go install
|
|
|
|
```
|
|
|
|
|
|
|
|
Benchmark
|
|
|
|
----------
|
|
|
|
|
|
|
|
```
|
|
|
|
BenchmarkFileStore 200000 9667 ns/op
|
|
|
|
BenchmarkFileFetch 500000 7928 ns/op
|
|
|
|
BenchmarkMemStore 500000 3824 ns/op
|
|
|
|
BenchmarkMemFetch 1000000 3448 ns/op
|
|
|
|
```
|