Here's an excerpt from my Rails log:
Rendered songs/_song_list (683.4ms) Completed in 841ms (View: 633, DB: 159) | 200 OK
What does Rails mean when it reports spending 633ms rendering the view?
In this particular case I'm iterating through a collection of items and printing an <li>
for each (as the name of the partial suggests) -- is Rails spending that 633ms concatenating strings? I feel like that (or any other CPU-bound operation) should be roughly infinitely fast.