Skip to content

Releases: TwiN/gdstore

v0.1.6

17 May 02:52
Compare
Choose a tag to compare
  • NewWithBuffer, which was deprecated in v0.1.5, has now been completely removed.
  • Persistence can now be disabled for testing purposes by using WithPersistence(false)

v0.1.5

28 Apr 04:13
Compare
Choose a tag to compare
  • Deprecated NewWithBuffer(filePath) in favor of New(filePath).WithBuffer(true)

v0.1.4

10 Apr 16:53
Compare
Choose a tag to compare
  • Updated to Go 1.14
  • Major performance improvements through the optional use of a buffer

v0.1.3

05 Mar 02:44
Compare
Choose a tag to compare
  • Added Values() function to get a list of all values
  • Added more tests

v0.1.2

14 Feb 06:12
Compare
Choose a tag to compare

Added GetString() and GetInt() functions to the GDStore struct

v0.1.1

14 Feb 03:01
Compare
Choose a tag to compare

Added Keys() function to the GDStore struct

v0.1.0

09 Feb 00:35
Compare
Choose a tag to compare

First official, non-prototype release

v0.0.3

09 Feb 00:35
Compare
Choose a tag to compare

This is the last prototype release

  • Redesigned persistence to append actions to the store's file rather than re-encode the entire map and re-create the file on every write
  • Significantly improved write speed by leaving the file open and keeping track of the file through the GDStore struct.
  • Improved test coverage and added tests for concurrency
  • Improved documentation