Crates.io | value-log |
lib.rs | value-log |
version | |
source | src |
created_at | 2024-03-12 19:42:24.836005 |
updated_at | 2025-01-05 17:02:56.884786 |
description | Value log implementation for key-value separated LSM storage |
homepage | https://github.com/fjall-rs/value-log |
repository | https://github.com/fjall-rs/value-log |
max_upload_size | |
id | 1170927 |
Cargo.toml error: | TOML parse error at line 24, column 1 | 24 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Generic value log implementation for key-value separated storage, inspired by RocksDB's BlobDB [1] and Titan [2] and implemented in safe, stable Rust.
This crate is intended as a building block for key-value separated storage. You probably want to use https://github.com/fjall-rs/fjall instead.
Keys are limited to 65536 bytes, values are limited to 2^32 bytes.
Enables serde
derives.
Disabled by default.
Uses bytes
as the underlying Slice
type.
Disabled by default.
The disk format is stable as of 1.0.0. Future breaking changes will result in a major version bump and a migration path.
All source code is licensed under MIT OR Apache-2.0.
All contributions are to be licensed as MIT OR Apache-2.0.