Always use mimalloc as the global allocator

This commit is contained in:
Loïc Lecrenier
2022-08-16 20:09:36 +02:00
parent fb2b6c0c28
commit 20be69e1b9
10 changed files with 10 additions and 22 deletions

View File

@ -11,9 +11,8 @@ use milli::{FieldId, Index};
use structopt::StructOpt;
use Command::*;
#[cfg(target_os = "linux")]
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
const ALL_DATABASE_NAMES: &[&str] = &[
MAIN,