jemalloc

来源:互联网 发布:农业大数据平台 编辑:程序博客网 时间:2024/05/16 13:59


本文转载自:http://www.canonware.com/jemalloc/


jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. jemalloc first came into use as theFreeBSD libc allocator in 2005, and since then it has found its way into numerous applications that rely on its predictable behavior. In 2010 jemalloc development efforts broadened to include developer support features such as heap profiling,Valgrind integration, and extensive monitoring/tuning hooks. Modern jemalloc releases continue to be integrated back into FreeBSD, and therefore versatility remains critical. Ongoing development efforts trend toward making jemalloc among the best allocators for a broad range of demanding applications, and eliminating/mitigating weaknesses that have practical repercussions for real world applications.

Documentation

jemalloc has evolved substantially over its lifetime, so although the older documentation is still broadly informative, many of the details are obsolete.

  • jemalloc(3) manual page: The manual page fully describes the API and options supported by jemalloc, and includes a brief summary of its internals.

  • Wiki: The wiki contains miscellaneous documentation such as FAQ answers and tutorials.

  • Facebook Engineering post: This article was written in 2011 and corresponds to jemalloc 2.1.0.

  • BSDcan paper: This paper was presented at theBSDcan conference in 2006 and roughly corresponds to the version of jemalloc that appeared in FreeBSD 7.

Mailing lists

There are two mailing lists devoted to jemalloc:

  • jemalloc-announce: Low volume, used primarily for release announcements.

  • jemalloc-discuss: General jemalloc discussion (technical, questions, bug reports, etc.).


注:近期参加MySQL运维学习,老师推荐该文章作为学习和技术提高的扩展阅读,先记录到自己的博客中,随后慢慢消化、学习、提高。本文与MySQL数据库 “性能优化”主题有关。


0 0