Who even uses jemalloc in 2026 anyway? (many major projects)

42 points by eatonphil


gaffneyc

Jemalloc is used extensively for deploying Ruby applications as it fits well with how Ruby allocates memory. Most Ruby/Rails applications that switch to jemalloc see a meaningful decrease in total memory usage.

david_chisnall

I still hope that we can move FreeBSD to snmalloc. I was using it in libc for a while and it performed better and had a bunch of useful security features (bounds-checked memcpy!) that are much harder to do with jemalloc. Oh, and libc was 20% smaller with snmalloc than jemalloc. Which was amusing given that people often complain that C++ produces larger binaries than C.