Skip to content

Releases: ipfs/go-ds-badger

v0.2.7

28 Jun 19:46
v0.2.7
209d604
Compare
Choose a tag to compare
  • Log when GC rounds start/end

v0.2.6

12 Oct 20:48
22c5a17
Compare
Choose a tag to compare

Batching implementation is no longer limited to using a single transaction, thereby removing the limit on the number of writes that a batch can hold.

v0.2.5

23 Sep 22:33
v0.2.5
ff1c156
Compare
Choose a tag to compare

Update go-log to v2
Update badger to v1.6.2

v0.2.4

08 Apr 03:07
9efc1de
Compare
Choose a tag to compare

Fixes a panic when querying after closing.

v0.2.2

28 Mar 03:27
b608e4f
Compare
Choose a tag to compare

Optimize memory usage:

  • Decrease table sizes. This reduces badger's base memory footprint from 80MiB to 20MiB.
  • Use FileIO for values. This doesn't appear to hurt performance (at least with "sync" disabled) and it also appears to improve read performance by 4x (on a highly unscientific test).

v0.2.1

11 Feb 16:46
ba5d532
Compare
Choose a tag to compare

Update go-datastore.

v0.2.0

03 Dec 21:42
133948d
Compare
Choose a tag to compare
Merge pull request #77 from ipfs/feat/ds-update

update datastore Interface

v0.0.7

22 Oct 16:45
v0.0.7
537179a
Compare
Choose a tag to compare
  • Make CollectGarbage keep collecting garbage until none is left.
  • Periodically ask badger to garbage collect in the background as it won't do this automatically.