Tuning by the libc Memory Allocator
Purpose
In low pipeline concurrency scenarios, use the libc memory allocator to tune the Redis performance, because libc has better performance than jemalloc.
Procedure
Add the MALLOC=libc parameter during Redis compilation.
1 | make MALLOC=libc -j |
Parent topic: Compilation Tuning