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

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -