What do you guys use to speed up your project?
Not really a speed gain, but an easy optimization.
If you experience a large amount of traffic or process a large number of jobs, you may experience your web/job workers slowly growing very large in size. Most just end up restarting the processes, suspecting a memory leak. But the default Ruby memory allocator is generally the culprit. Switch to jemalloc - your memory utilization should stabilize.
https://elements.heroku.com/buildpacks/gaffneyc/heroku-buildpack-jemalloc
https://twitter.com/gammons/status/1186333632090247168
If you experience a large amount of traffic or process a large number of jobs, you may experience your web/job workers slowly growing very large in size. Most just end up restarting the processes, suspecting a memory leak. But the default Ruby memory allocator is generally the culprit. Switch to jemalloc - your memory utilization should stabilize.
https://elements.heroku.com/buildpacks/gaffneyc/heroku-buildpack-jemalloc
https://twitter.com/gammons/status/1186333632090247168
Notifications
You’re not receiving notifications from this thread.