Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to optimize my load times and I've noticed in the log that the final render time is much greater than the subcategorized times.

Started GET "/events" for 127.0.0.1 at 2013-02-28 19:40:24 -0500
Processing by EventsController#index as HTML
  Event Load (2.0ms)  SELECT `events`.* FROM `events` WHERE (YEAR(start_time) >= YEAR('2013-02-28')) ORDER BY start_time, title
  Rendered events/_event.html.erb (4.0ms)
  Rendered events/index.html.erb within layouts/application (7.0ms)
  Rendered shared/_meta_data.html.erb (0.0ms)
  Sitemap Load (2.0ms)  SELECT `sitemaps`.* FROM `sitemaps` ORDER BY name, action, controller
  Rendered shared/_navigation.html.erb (33.0ms)
Completed 200 OK in 227ms (Views: 221.0ms | ActiveRecord: 4.0ms)

The total time spent is 227ms, but the aforementioned sub-actions don't come near that. Where is it all going?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.