In a Ruby On Rails applications where we follow convention over configuration, we might get hit by a slow server response, that would eventually cost users shy away from application.

There are many ways of how you can boost performance of Ruby On Rails applications. Focusing on approach depending on the application structure, size of the database and traffic intensity, our performance optimization can be carried out.

Rules for Performance Optimization

  1. Measure
  2. Optimize What is slow
  3. Test and Isolate changes

Primary areas to think about where we can improve performance are Views and ActiveRecord Queries

PS Note : Will be continued...