> Using ruby-prof I captured the CPU time of the startup of my 3.0.3 > Rails app (https://gist.github.com/762764): > ... > ruby-1.9.2-p136 (Total CPU 16.794391) > > %self total self wait child calls name > 39.93 16.47 6.71 0.00 16.46 1904 Kernel#require > 3.85 2.51 0.65 0.00 2.23 14252 Array#map
If require is your bottleneck, you can use the faster_require gem: https://github.com/rdp/faster_require -r -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

