Å·±¦ÓéÀÖ

Jump to ratings and reviews
Rate this book

Ruby Performance Optimization: Why Ruby Is Slow, and How to Fix It

Rate this book
This is the first book ever that consolidates all the Ruby performance optimization advice in one place. It’s your comprehensive guide to memory optimization, CPU optimization, garbage collector tuning, profiling, measurements, performance testing, and more.

You’ll go from performance rookie to expert. First, you’ll learn the best practices for writing Ruby code that’s easy not only on the CPU, but also on memory, and that doesn’t trigger the dreaded garbage collector. You’ll find out that garbage collection accounts for 80% of slowdowns, and often takes more than 50% of your program’s execution time. And you’ll discover the bottlenecks in Rails code and learn how selective attribute loading and preloading can mitigate the performance costs of ActiveRecord.

As you advance to Ruby performance expert, you’ll learn how to profile your code, how to make sense out of profiler reports, and how to make optimization decisions based on them. You’ll make sure slow code doesn’t creep back into your Rails application by writing performance tests, and you’ll learn the right way to benchmark Rails.

And finally, you’ll dive into the Ruby interpreter internals to really understand why garbage collection makes Ruby so slow, and how you can tune it up.

170 pages, ebook

First published November 10, 2015

8 people are currently reading
116 people want to read

About the author

Alexander Dymo

3Ìýbooks

Ratings & Reviews

What do you think?
Rate this book

Friends & Following

Create a free account to discover what your friends think of this book!

Community Reviews

5 stars
16 (29%)
4 stars
28 (50%)
3 stars
10 (18%)
2 stars
1 (1%)
1 star
0 (0%)
Displaying 1 - 4 of 4 reviews
Profile Image for Andrew.
692 reviews8 followers
April 24, 2018
An interesting summary of very specific techniques and methods for optimizing Ruby. Surprisingly, it covered optimizing versions as old as 1.8! In that regard it was a nearly academic overview of Ruby’s GC internals. In that regard the metrics analyzed in “Ruby Under The Microscope� is more interesting.
590 reviews11 followers
September 25, 2019
Great book on optimizing the performance of your Ruby applications. Top tip: reduce memory allocation. What is not allocated does not need to be freed by the GC.
Profile Image for Jeffrey Dill.
266 reviews3 followers
July 8, 2023
Not everything will be super useful to you but, overall, this is a must read for Ruby developers.
Displaying 1 - 4 of 4 reviews

Can't find what you're looking for?

Get help and learn more about the design.