November 2015
Intermediate to advanced
200 pages
4h 26m
English
High memory consumption is what makes Ruby slow. Therefore, to optimize we need to reduce the memory footprint. This will, in turn, reduce the time for garbage collection.
You might ask, why don’t we disable GC altogether? That is rarely a good thing to do. Turning off GC significantly increases peak memory consumption. The operating system may run out of memory or start swapping. Both results will hit performance much harder than Ruby GC itself.
So let’s get back to our example and think how we can reduce memory consumption. We know that we use 2 GB of memory to process 1 GB of data. So we’ll need to look at where that extra memory is used.
| chp1/example_annotated.rb | |
| Line 1 | require "benchmark" |
| - | |
| - | num_rows = 100000 |
| - ... | |
Read now
Unlock full access