tikv-jemallocator
This project is the successor of jemallocator.
The project is published as tikv-jemallocator and jemallocator for historical reasons. The two crates are the same except names. It's OK to use either crate. But due to lack of permissions, only jemallocator and jemalloc-sys are updated. If you want to use other crates, tikv-xxx versions are still required.
Links against
jemallocand provides aJemallocunit type that implements the allocator APIs and can be set as the#[global_allocator]
Overview
The jemalloc support ecosystem consists of the following crates:
tikv-jemalloc-sys: builds and links againstjemallocexposing raw C bindings to it.tikv-jemallocator: provides theJemalloctype which implements theGlobalAllocandAlloctraits.tikv-jemalloc-ctl: high-level wrapper overjemalloc's control and introspection APIs (themallctl*()family of functions and the MALLCTL NAMESPACE)'
Documentation
To use tikv-jemallocator add it as a dependency:
# Cargo.toml
[]
[]
= "0.5"
To set tikv_jemallocator::Jemalloc as the global allocator add this to your project:
# main.rs
use Jemalloc;
static GLOBAL: Jemalloc = Jemalloc;
And that's it! Once you've defined this static then jemalloc will be used for
all allocations requested by Rust code in the same program.
Platform support
The following table describes the supported platforms:
build: does the library compile for the target?run: dotikv-jemallocatorandtikv-jemalloc-systests pass on the target?jemalloc: dotikv-jemalloc's tests pass on the target?
Tier 1 targets are tested on all Rust channels (stable, beta, and nightly). All other targets are only tested on Rust nightly.
| Linux targets: | build | run | jemalloc |
|---|---|---|---|
aarch64-unknown-linux-gnu |
✓ | ✓ | ✗ |
powerpc64le-unknown-linux-gnu |
✓ | ✓ | ✗ |
x86_64-unknown-linux-gnu (tier 1) |
✓ | ✓ | ✓ |
| MacOSX targets: | build | run | jemalloc |
x86_64-apple-darwin (tier 1) |
✓ | ✓ | ✗ |
Features
The tikv-jemallocator crate re-exports the features of the tikv-jemalloc-sys
dependency.
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 tikv-jemallocator by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions.