mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
Switch to mimalloc
...it's faster.
This commit is contained in:
parent
d33b70e3a8
commit
65d1d770b3
3 changed files with 26 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue