jevmalloc

Crates.iojevmalloc
lib.rsjevmalloc
version0.0.0+5.3.0-1-g54eaed1d8b56b1aa528be3bdd1877e59c56fa90c
created_at2025-12-18 21:36:37.056635+00
updated_at2025-12-18 21:36:37.056635+00
descriptionRust allocator wrapping jemalloc.
homepagehttps://github.com/matrix-construct/jemallocator
repositoryhttps://github.com/matrix-construct/jemallocator
max_upload_size
id1993585
size103,809
Jason Volk (jevolk)

documentation

https://matrix-construct.github.io/jemallocator

README

jevmalloc

ci Latest Version docs

This project is the successor of jemallocator.

Links against jemalloc and provides a Jemalloc unit 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 against jemalloc exposing raw C bindings to it.
  • tikv-jemallocator: provides the Jemalloc type which implements the GlobalAlloc and Alloc traits.
  • tikv-jemalloc-ctl: high-level wrapper over jemalloc's control and introspection APIs (the mallctl*() family of functions and the MALLCTL NAMESPACE)'

Documentation

To use tikv-jemallocator add it as a dependency:

# Cargo.toml
[dependencies]

[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.6"

To set tikv_jemallocator::Jemalloc as the global allocator add this to your project:

// main.rs
#[cfg(not(target_env = "msvc"))]
use tikv_jemallocator::Jemalloc;

#[cfg(not(target_env = "msvc"))]
#[global_allocator]
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: do tikv-jemallocator and tikv-jemalloc-sys tests pass on the target?
  • jemalloc: do tikv-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
aarch64-apple-darwin

Features

This crate provides following cargo feature flags:

  • api When the api feature of this crate is enabled, it also implements the Alloc trait, allowing usage in collections.

  • default feature is background_threads_runtime_support.

  • The tikv-jemallocator crate re-exports the features of the tikv-jemalloc-sys dependency.

License

This project is licensed under either of

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.

Commit count: 0

cargo fmt