Reputation: 658
I have a rails app. But in my logs I have some strange output, especially string
Completed 200 OK in 113ms (Views: 45.0ms | ActiveRecord: 2.9ms | Sphinx: 0.0ms)
45ms(views) + 3ms(AR) = 48ms but not 113
My app should be 2x faster. What is the problem?
Here is full log for a single request
Upvotes: 0
Views: 76
Reputation: 12275
Nowhere it is said that your 113ms
should be the sum of whatever is inside the parenthesis. The time took by rails to handle the request is not there, nor is the time took by the logic in your action.
Upvotes: 3