jemallocator/README.md

97 lines
3.5 KiB
Markdown
Raw Permalink Normal View History

# tikv-jemallocator
2016-01-21 01:06:21 +00:00
[![Travis-CI Status]][travis] [![Latest Version]][crates.io] [![docs]][docs.rs]
2016-01-21 01:06:21 +00:00
This project is a simplified fork of [jemallocator](https://github.com/gnzlbg/jemallocator) focus on server.
2018-10-24 13:27:27 +00:00
> Links against `jemalloc` and provides a `Jemalloc` unit type that implements
> the allocator APIs and can be set as the `#[global_allocator]`
2016-01-21 01:06:21 +00:00
## 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_)'
2018-10-24 13:27:27 +00:00
## Documentation
2016-01-21 01:34:31 +00:00
2018-10-24 13:27:27 +00:00
* [Latest release (docs.rs)][docs.rs]
To use `tikv-jemallocator` add it as a dependency:
2016-01-21 01:34:31 +00:00
```toml
# Cargo.toml
[dependencies]
2019-10-06 11:19:53 +00:00
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.4.0"
2016-01-21 01:34:31 +00:00
```
To set `tikv_jemallocator::Jemalloc` as the global allocator add this to your project:
2016-01-21 01:34:31 +00:00
```rust
2019-10-06 11:19:53 +00:00
# main.rs
#[cfg(not(target_env = "msvc"))]
use tikv_jemallocator::Jemalloc;
2017-07-07 15:24:26 +00:00
2019-10-06 11:19:53 +00:00
#[cfg(not(target_env = "msvc"))]
2017-07-07 15:24:26 +00:00
#[global_allocator]
2019-10-06 11:19:53 +00:00
static GLOBAL: Jemalloc = Jemalloc;
2016-01-21 01:34:31 +00:00
```
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.
2016-01-21 01:34:31 +00:00
2018-10-24 13:27:27 +00:00
## Platform support
2018-10-24 09:01:42 +00:00
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?
* `valgrind`: do the tests pass under valgrind?
2018-10-24 09:01:42 +00:00
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 | valgrind |
|-------------------------------------|-----------|---------|--------------|--------------|
| `aarch64-unknown-linux-gnu` | ✓ | ✓ | ✗ | ✗ |
| `powerpc64le-unknown-linux-gnu` | ✓ | ✓ | ✗ | ✗ |
| `x86_64-unknown-linux-gnu` (tier 1) | ✓ | ✓ | ✓ | ✓ |
| **MacOSX targets:** | **build** | **run** | **jemalloc** | **valgrind** |
| `x86_64-apple-darwin` (tier 1) | ✓ | ✓ | ✗ | ✗ |
2018-10-24 13:27:27 +00:00
## Features
2018-06-25 07:21:33 +00:00
The `tikv-jemallocator` crate re-exports the [features of the `tikv-jemalloc-sys`
dependency](https://github.com/tikv/jemallocator/blob/master/jemalloc-sys/README.md).
2018-06-25 07:21:33 +00:00
2018-10-24 13:27:27 +00:00
## License
2016-01-21 01:06:21 +00:00
2017-10-30 21:11:08 +00:00
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
at your option.
2018-10-24 13:27:27 +00:00
## Contribution
2016-01-21 01:06:21 +00:00
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `tikv-jemallocator` by you, as defined in the Apache-2.0 license,
2018-10-24 13:27:27 +00:00
shall be dual licensed as above, without any additional terms or conditions.
[travis]: https://travis-ci.com/tikv/jemallocator
[Travis-CI Status]: https://travis-ci.com/tikv/jemallocator.svg?branch=master
[Latest Version]: https://img.shields.io/crates/v/tikv-jemallocator.svg
[crates.io]: https://crates.io/crates/tikv-jemallocator
[docs]: https://docs.rs/tikv-jemallocator/badge.svg
[docs.rs]: https://docs.rs/tikv-jemallocator/