Code & Innovation: The Algonauti Engineering Journal

Where our developers write about the code they craft, the problems they solve, and the ideas that inspire them.


Adding jemalloc to Rails apps on Heroku

jemalloc is a malloc implementation developed by Jason Evans which is known to improve memory consumption of Rails apps, especially on Heroku. By default Ruby uses malloc from C to manage memory but it can run into memory fragmentation issues.

Salvatore Ferrucci