This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(mvcc): Implementing iterators within a transaction (#42)
* refactor(mvcc): Implementing iterators within a transaction * fix(mvcc): fix `BufIter` pos miss * doc: version up * doc: version up * doc: version up * feat(mvcc): impl `Sync` + `Send` for `TransactionIter` * doc: version up * style: open lru_cache.rs * fix: ignore some test about SkipTable * fix: `Compaction` when drop * fix: `Transaction` blocking * fix: `VersionLog` overwrites data after restarting * fix: `test_writer` * style: code format * fix: `VersionIter` data overwriting mistaken * fix: `TransactionIter` seek duplicate value * fix: `TransactionIter` seek data coverage * style: code format * feat: adjust the parameters of `Storage::set` * pref: optimize the structure of write buf to avoid frequent copying of keys * fix: test * fix
- Loading branch information
Showing
33 changed files
with
666 additions
and
642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kip_db" | ||
version = "0.1.2-alpha.0" | ||
version = "0.1.2-alpha.15" | ||
edition = "2021" | ||
authors = ["Kould <[email protected]>"] | ||
description = "轻量级、异步 基于LSM Leveled Compaction K-V数据库" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.