On Sep 18, 9:21 pm, jthaddeus
<jtcamb...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
wrote:> How does the number of plugins/gems used in an app affect overall app
> performance?
>
The main thing you will probably notice is app startup time,
especially in ruby 1.9.2. The require function in 1.9.2 gets
significantly lower with the number of directories in the load path
and the number of already required files. 1.9.3 is miles better in
this respect, and in either version makes no difference once the app
is up and running (still annoying in development though). You''ll also
use more memory, the more code you have loaded (although the fact that
it''s in a gem rather than being your code makes no difference)
Fred
--
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.