forked from spacejam/sled
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add quickcheck to the log, fix a few bugs * clean up replaced log entries on disk using fallocate * fix issue where non-linux systems were not zeroing out log entries completely. added regression test. * make clippy happy
- Loading branch information
Showing
21 changed files
with
677 additions
and
430 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 |
---|---|---|
|
@@ -13,3 +13,4 @@ target | |
Cargo.lock | ||
*swp | ||
*swo | ||
rsdb.tmp.* |
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 = "rsdb" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Tyler Neely <[email protected]>"] | ||
description = "a flash-sympathetic persistent lock-free B+ tree, pagecache, and log" | ||
license = "Apache-2.0" | ||
|
@@ -11,9 +11,9 @@ documentation = "https://docs.rs/rsdb/" | |
readme = "README.md" | ||
|
||
[features] | ||
default = ["libc"] | ||
default = [] | ||
bench = ["clap", "num_cpus", "log", "rand", "rayon", "zstd", "env_logger"] | ||
stress = ["docopt", "chan-signal", "rayon", "rand"] | ||
stress = ["docopt", "chan-signal", "rayon", "rand", "zstd"] | ||
|
||
[[bin]] | ||
name = "bench" | ||
|
@@ -24,14 +24,14 @@ name = "stress" | |
required-features = ["stress"] | ||
|
||
[dependencies] | ||
libc = "0.2" | ||
crossbeam = "0.3" | ||
coco = "0.2" | ||
bincode = "0.8" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
lazy_static = "0.2" | ||
log = {version = "0.3", optional = true} | ||
libc = {version = "0.2", optional = true} | ||
rayon = {version = "0.8", optional = true} | ||
env_logger = {version = "0.4", optional = true} | ||
num_cpus = {version = "1.6", optional = true} | ||
|
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.