-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
3 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,5 @@ | ||
name: Clippy | ||
# Don't run clippy for V2 | ||
# on: [push, pull_request] | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
clippy: | ||
|
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# August 2024 | ||
|
||
### Experimental implementation of basic features: | ||
|
||
- [x] Atomic `Put()`, `Get()`, `Delete()`, and `Update()` operations | ||
- [x] 100% safe & stable Rust | ||
- [x] Separation of keys from values, reducing the amount of data moved during compaction (i.e., reduced IO amplification) | ||
- [x] Garbage Collector | ||
- [x] Lock-free memtable with Crossbeam SkipMap (no `Mutex`) | ||
- [x] Tokio Runtime for efficient thread management | ||
- [x] Bloom Filters for fast in-memory key searches | ||
- [x] Crash recovery using the Value Log | ||
- [x] Index to improve searches on Sorted String Tables (SSTs) | ||
- [x] Key Range to store the largest and smallest keys in an SST | ||
- [x] Sized Tier Compaction Strategy (STCS) |
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