Skip to content

Tags: gdlxSong/wal

Tags

v1.1.7

Toggle v1.1.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request tidwall#10 from ctrix/master

More secure and user defined file permissions

v0.1.6

Toggle v0.1.6's commit message
Upgrade modules

v0.1.5

Toggle v0.1.5's commit message
Updated gjson dependency

v0.1.4

Toggle v0.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request tidwall#3 from gaoxinge/fix

Fix: catch os.Rename error

v0.1.3

Toggle v0.1.3's commit message
Updated packages

v0.1.2

Toggle v0.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request tidwall#2 from dim/fix/lock-contention

Avoid read-lock contention

v0.1.1

Toggle v0.1.1's commit message
Fix NoCopy

v0.1.0

Toggle v0.1.0's commit message
Optimized reads

Total rewrite of the Read operation. There is now a segment LRU
cache instead of multiple readers. This has more memory overhead,
because up to four segments may be loaded in memory at one time,
but is a ton faster and allows for forward and reverse sequential
reads.

This commit also removes the Durability option in favor of a
simpiler NoSync option.

v0.0.1

Toggle v0.0.1's commit message
Fix corrupt JSON format with non-UT8 binary

The JSON output format has been changed to support valid utf8 and
non-utf8 binary data. Valid utf8 has a '+' prefix and store the
data as a standard JSON string. Binary has a '$' prefix and store
the data in base64.

fixes tidwall#1