Skip to content

v0.3.2

Compare
Choose a tag to compare
@ulfox ulfox released this 12 Sep 14:31
· 9 commits to main since this release

Commits:

Commit 1b121d8

New
  • Storage tests
Changes
  • sql_tests.go was split to multiple files
    test

Commit 7c5211b

[todo] update

Commit 9b05be5

[cache/v1/v2] make fields private

Commit 764cd8d

The following fields of Storage have been moved to a new struct

  • Data array
  • Library map
  • Active Document index

Commit bb2047d

We now use buffer for reads to make sure that
if an import/read operation fails, we wont be
left with an empty data array

Before we would dump the data array and then read
the file into it. If the file was corrupt, the operation
would fail and leave as with an empty data array

Now we keep the current data array and dump only
if the import/read operation has finished successfully