Use jemalloc, because glibc's allocator is crap

This commit is contained in:
Frank Denis 2019-03-13 20:30:17 +01:00
parent d22331d106
commit 5a07001129
2 changed files with 4 additions and 0 deletions

View file

@ -15,6 +15,7 @@ base64 = "0.10"
clap = "2"
futures = "0.1"
hyper = "0.12"
jemallocator = "0.1"
tokio = "0.1"
tokio-current-thread = "0.1"
tokio-timer = "0.2"

View file

@ -1,3 +1,6 @@
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
use base64;
use hyper;
use tokio;