Ruby on Rails Friday, August 28, 2015

Hi,

this is more an advice than a question.
Just upgrade my rails app from 4.2.0 to 4.2.3 (and finally 4.2.4) to get rid of a bug and I realized that some views with forms now takes 2x time to render.

Using ruby-prof I've found that the performance problem can be avoided commenting the "web-console" gem in Gemfile.

I'm not an expert reading ruby-prof reports but the problem appears to be in
Exception#set_backtrace_with_binding_of_caller
that is called after
I18n::MissingTranslation::Base#to_exception

It seems that I18n::MissingTranslation::Base#to_exception is not called on rails 4.2.0 because I have not found any reference to that method in the report.

On Rails 4.2.4 without using web-console the view render is slightly faster than 4.2.0, and the send of I18n::MissingTranslation::Base#to_exception has no measurable cost because Exception#set_backtrace_with_binding_of_caller is not called.

I can send the ruby-prof reports upon request. And this is with ruby 2.2.2p95 if it matters.

Regards
  Sebastian Calvo

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/685209ba-87e7-43f0-abb7-4e81ff6ecc07%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment