Eager Loading
What is Eager Loading ? Eager loading is a mechanism through which ActiveRecord loads the associated records in memory, reducing the number of executed sql queries. There are following ways to do eager loading in ActiveRecord: includes preload eager_load Why do we need Eager Loading ? Let’s say we’ve to get the author’s last name of some books. For that the query will look like: books = Book....