Skip to content

Commit

Permalink
add changelog for v1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
roseduan committed Sep 25, 2023
1 parent 3202245 commit 8de9190
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Release 1.3.6 (2023-09-25)

## 🎄 Enhancements
* avoid resetting pool to optimize the memory usage
* no need to return err in pendingWrites
* fix benchmark error
## 🎠 Community
* Thanks to @akiozihao
* check ErrPendingSizeTooLarge first (https://github.com/rosedblabs/wal/pull/32)

# Release 1.3.5 (2023-09-19)

## 🎄 Enhancements
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ Write Ahead Log for LSM or bitcask storage, with block cache.
## Key Features
* Disk based, support large data volume
* Append only write, high performance
* Fast read, one disk seek to retrieve any data
* Fast read, one disk seek to retrieve any value
* Support Block Cache, improve read performance
* Support batch write, all data in a batch will be written in a single disk seek
* Iterate all data in wal with NewReader
* Iterate all data in wal with `NewReader` function
* Support concurrent write and read, all functions are thread safe
* Support data compression, use Snappy and ZSTD(Coming soon)

## Design Overview

Expand Down

0 comments on commit 8de9190

Please sign in to comment.