NedMalloc / DlMalloc experiences
        Posted  
        
            by Suma
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Suma
        
        
        
        Published on 2010-03-25T09:24:21Z
        Indexed on 
            2010/04/02
            8:13 UTC
        
        
        Read the original article
        Hit count: 663
        
I am currently evaluating a few of scalable memory allocators, namely nedmalloc and ptmalloc (both built on top of dlmalloc), as a replacement for default malloc / new because of significant contention seen in multithreaded environment. Their published performance seems to be good, however I would like to check what are experiences of other people who have really used them.
- Were your performance goals satisfied?
- Did you experience any unexpected or hard to solve issues (like heap corruption)?
- If you have tried both ptmaalloc and nedmalloc, which of the two would you recommend? Why (ease of use, performance)?
© Stack Overflow or respective owner