Understanding Ruby on Rails render times - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T16:42:35Zhttp://stackoverflow.com/feeds/question/687758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times4Understanding Ruby on Rails render timessalt.racer2009-03-26T22:12:15Z2009-03-27T07:11:46Z
<p>I am working on an "optimization" on my application and I am trying to understand the output that rails (version 2.2.2) gives at the end of the render.</p>
<p>Here is the "old" way:</p>
<pre><code>Rendered user/_old_log (25.7ms)
Completed in 466ms (View: 195, DB: 8) | 200 OK
</code></pre>
<p>And the "new" way:</p>
<pre><code>Rendered user/_new_log (48.6ms)
Completed in 337ms (View: 192, DB: 33) | 200 OK
</code></pre>
<p>These queries were exactly the same, the difference is the old way is parsing log files while the new way is querying the database log table.</p>
<p>The actual speed of the page is not the issue (the user understands that this is a slow request) ... but I would like the page to respond as quickly as possible even though it is a "slow" page.</p>
<p>So, my question is, what do the numbers represent/mean? In other words, which way was the faster method and why?</p>
http://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times/687783#687783-1Answer by rabble for Understanding Ruby on Rails render timesrabble2009-03-26T22:23:14Z2009-03-26T22:23:14Z<p>Your new way is spending less time overall but more time rendering the template. </p>
http://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times/687975#6879755Answer by Jordan Brough for Understanding Ruby on Rails render timesJordan Brough2009-03-26T23:47:36Z2009-03-26T23:47:36Z<p>This:</p>
<pre><code>Rendered user/_old_log (25.7ms)
</code></pre>
<p>is the time to render <em>just</em> the <code>_old_log</code> partial template, and comes from <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fview/renderable%5Fpartial.rb#L19" rel="nofollow">renderable_partial.rb:19</a> which ends up calling <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fcontroller/benchmarking.rb#L27" rel="nofollow">benchmarking.rb:27</a></p>
<p>This:</p>
<pre><code>Completed in 466ms
</code></pre>
<p>Is the total time for the entire request and comes from <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fcontroller/benchmarking.rb#L72" rel="nofollow">benchmarking.rb:72</a></p>
<p>These:</p>
<pre><code>(View: 195, DB: 8) | 200 OK
</code></pre>
<p>are the total times for rendering the entire view (partials & everything) and all database requests, respectively, and come from <a href="http://github.com/rails/rails/blob/v2.2.2/actionpack/lib/action%5Fcontroller/benchmarking.rb#L74-84" rel="nofollow">benchmarking.rb:74-84</a></p>
http://stackoverflow.com/questions/687758/understanding-ruby-on-rails-render-times/688797#6887971Answer by Gdeglin for Understanding Ruby on Rails render timesGdeglin2009-03-27T07:11:46Z2009-03-27T07:11:46Z<p>Jordan's answer is correct. To paraphrase, the first number is the time the page took to load. The second is how long the view took to generate. The last number is how long it took for your database to handle all queries you sent to it.</p>
<p>You can also get an estimation of how long your Controller and Model code took by subtracting the last two numbers from the first number, but a better way would be to use the Benchmark.measure method (<a href="http://www.ruby-doc.org/stdlib/libdoc/benchmark/rdoc/classes/Benchmark.html" rel="nofollow">http://www.ruby-doc.org/stdlib/libdoc/benchmark/rdoc/classes/Benchmark.html</a>).</p>
<p>Your new way appears to have improved because code in the Controller/Model completes faster.</p>