14 releases

0.5.4 Jul 27, 2023
0.5.0 May 24, 2022
0.3.2 Jun 14, 2019
0.3.0 Mar 20, 2019
0.1.0 Jan 21, 2016

#4 in Memory management

Download history 26042/week @ 2023-12-23 68970/week @ 2023-12-30 95709/week @ 2024-01-06 93935/week @ 2024-01-13 89857/week @ 2024-01-20 83151/week @ 2024-01-27 86322/week @ 2024-02-03 92446/week @ 2024-02-10 80810/week @ 2024-02-17 111293/week @ 2024-02-24 87020/week @ 2024-03-02 98881/week @ 2024-03-09 94230/week @ 2024-03-16 100979/week @ 2024-03-23 99878/week @ 2024-03-30 74940/week @ 2024-04-06

389,095 downloads per month
Used in 196 crates (137 directly)

MIT/Apache

2MB
51K SLoC

C 47K SLoC // 0.1% comments Visual Studio Project 1.5K SLoC Rust 785 SLoC // 0.1% comments M4 658 SLoC // 0.1% comments Shell 380 SLoC // 0.3% comments C++ 371 SLoC // 0.1% comments Python 261 SLoC // 0.3% comments Visual Studio Solution 125 SLoC XSL 9 SLoC

tikv-jemallocator

ci Latest Version docs

This project is the successor of jemallocator.

The project is also published as jemallocator for historical reasons. The two crates are the same except names. For new projects, it's recommended to use tikv-xxx versions instead.

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.5"

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
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

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.

Dependencies