c++ - Which projects with open source you can see the use of advanced memory management? -
i want know open source projects used things arena, allocators, overloading new , etc. refers c + + language.
see google perf tools , jemalloc. last 1 used in freebsd default malloc implementation. so, every project use of 2 use arenas, cause both use them internally. new
operator in c++ implemented libc's malloc
function. also, see nginx http server sources, allocates memory pool session before connection created (but it's written in pure c). apache has apr pools library.
Comments
Post a Comment