I have a rails app which shows the following log for a single action
Completed in 587ms (View: 415, DB: 29) | 200 OK [http://localhost/]
its taking 415 ms to render the view layer. Is there any way to optimize view rendering in rails ? I am a beginner in ruby on rails.
I have render call like this on a page(written in HAML) that showed me the above log time. I want to optimize the rendering of these partials
- auctions.each do |auction|
= render :partial => "/shared/vertical_item", :object => auction,:inline => true
thanks