10个版本
0.5.4 | 2023年7月27日 |
---|---|
0.5.0 | 2022年5月25日 |
0.3.3 | 2019年6月16日 |
0.2.0 | 2018年8月2日 |
0.1.1 | 2017年10月27日 |
#71 in 内存管理
233,164每月下载量
在23个Crates中(15个直接)使用
2MB
52K SLoC
jemalloc-ctl
jemalloc的
mallctl*()
控制与内省API的安全封装。
文档
平台支持
支持jemallocator
Crates支持的所有平台。
示例
use std::thread;
use std::time::Duration;
use jemalloc_ctl::{stats, epoch};
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
fn main() {
// Obtain a MIB for the `epoch`, `stats.allocated`, and
// `atats.resident` keys:
let e = epoch::mib().unwrap();
let allocated = stats::allocated::mib().unwrap();
let resident = stats::resident::mib().unwrap();
loop {
// Many statistics are cached and only updated
// when the epoch is advanced:
e.advance().unwrap();
// Read statistics using MIB key:
let allocated = allocated.read().unwrap();
let resident = resident.read().unwrap();
println!("{} bytes allocated/{} bytes resident", allocated, resident);
thread::sleep(Duration::from_secs(10));
}
}
许可证
此项目根据您的选择,受以下任一许可证的许可:
- Apache License,版本2.0,(LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
。
贡献
除非您明确声明,否则您提交给jemalloc-ctl
的任何有意贡献,根据Apache-2.0许可证的定义,应如上所述双重许可,无需任何额外条款或条件。