3 unstable releases
new 0.2.0 | Jan 31, 2025 |
---|---|
0.1.1 | Jan 31, 2025 |
0.1.0 | Jan 31, 2025 |
#453 in Filesystem
63 downloads per month
305KB
5.5K
SLoC
disk-dlmalloc
A fork of dlmalloc-rs backed by a memory-mapped file, enabling support for datasets exceeding available RAM.
License
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
lib.rs
:
A fork of [dlmalloc-rs] backed by a memory-mapped file, enabling support for datasets exceeding available RAM.
The dlmalloc
allocator is described at
https://gee.cs.oswego.edu/dl/html/malloc.html and this Rust crate is a straight
port of the C code for the allocator into Rust. The implementation is
wrapped up in a Dlmalloc
type and has support for Linux, OSX, and Wasm
currently.