Switch to mimalloc

...it's faster.
This commit is contained in:
Pekka Enberg 2023-09-02 14:04:22 +03:00
parent d33b70e3a8
commit 65d1d770b3
3 changed files with 26 additions and 0 deletions

View file

@ -6,6 +6,11 @@ mod sqlite3_ondisk;
mod types;
mod vdbe;
use mimalloc::MiMalloc;
#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;
use anyhow::Result;
use fallible_iterator::FallibleIterator;
use pager::Pager;