magik6k / autobatch

An implementation of go-datastore that automatically batches writes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

autobatch

Autobatch is an implementation of go-datastore that automatically batches together writes by holding puts in memory until a certain threshold is met. This can improve disk performance at the cost of memory in certain situations.

Usage

Simply wrap your existing datastore in an autobatching layer like so:

bds := NewAutoBatching(basedstore, 128)

And make all future calls to the autobatching object.

License

MIT

About

An implementation of go-datastore that automatically batches writes

License:MIT License


Languages

Language:Go 100.0%