You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# You’ll notice however, that going from four processes to three won’t cut your memory use by one fourth.
# This is because modern versions of Ruby are Copy on Write friendly.
# That is, multiple processes can share memory as long as they don’t try to modify it.
# This is a contrived example that shows forked processes are smaller. In the case of Puma, forked workers will be smaller but certainly not by a factor of 1/788.
# "Running with fewer workers has downsides — most importantly, your throughput will go down. If you don’t want to run with fewer workers,
# then you’ll need to find hotspots of object creation and figure out how to get around them