From 1bbeacb918bd732d87ea14a66acade8d276dee77 Mon Sep 17 00:00:00 2001 From: Darach Ennis Date: Wed, 23 Apr 2025 11:20:19 +0200 Subject: [PATCH] Update README.md Update the allocator text as snmalloc is in common use for simd-json with tremor and has been for years. Also, most of the goodness in mimalloc has since been merged into snmalloc. Rephrase accordingly. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e927aa1..8814ce1b 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,8 @@ the `simd128` instruction set when available. When no supported SIMD instruction fallback implementation, but this is significantly slower. ### Allocator -For best performance, we highly suggest using [mimalloc](https://crates.io/crates/mimalloc) or [jemalloc](https://crates.io/crates/jemalloc) instead of the system allocator used by -default. Another recent allocator that works well (but we have yet to test it in production) is [snmalloc](https://github.com/microsoft/snmalloc). - +For best performance, we highly suggest using [snmalloc](https://github.com/microsoft/snmalloc), [mimalloc](https://crates.io/crates/mimalloc) or [jemalloc](https://crates.io/crates/jemalloc) +instead of the system default allocator. ## Safety