I have a rails application that shows the following log for one action
Completed in 587ms (View: 415, DB: 29) | 200 OK [http:
415 ms is required to view it. Is there a way to optimize the rendering of the view in rails? I'm new to ruby on rails.
I am calling a call like this on a page (written in HAML) that showed me the specified registration time. I want to optimize the rendering of these partitions
- auctions.each do |auction|
= render :partial => "/shared/vertical_item", :object => auction,:inline => true
thank
source
share