nedmalloc 1.04 Alpha review

Download
by rbytes.net on

nedmalloc an alternative malloc implementation written in C for multiple threads without lock contention based on dlmalloc v2.8.3.

License: Open Software License
File size: 0K
Developer: Niall Douglas
0 stars award from rbytes.net

nedmalloc an alternative malloc implementation written in C for multiple threads without lock contention based on dlmalloc v2.8.3.

It is more or less a newer implementation of ptmalloc2, the standard allocator in Linux (which is based on dlmalloc v2.7.0) but also contains a per-thread cache for maximum CPU scalability. It comes under the Boost software license which permits commercial usage.

It is more than 125 times faster than the standard Win32 memory allocator, 4-10 times faster than the standard FreeBSD memory allocator and up to twice as fast as ptmalloc2, the standard Linux memory allocator. It can sustain between 7.3m and 8.2m malloc & free pair operations per second on a 2200Mhz AMD Athlon64 machine.

It scales with extra CPU's far better than either the standard Win32 memory allocator or ptmalloc2 and can cause significantly less memory bloating than ptmalloc2. nedmalloc project avoids processor serialisation (locking) entirely when the requested memory size is in the thread cache.

What's New in This Release:
This is an interim release from SVN as there have been many critical bugs fixed as nedmalloc was deployed on very high end architectures.
Further speed ups and scalability improvements also made.
However, this release is marked "alpha" since the usual thorough release testing has not been performed.

nedmalloc 1.04 Alpha keywords