>
> Does anybody have any idea why 'render_without_active_scaffold' or any
> other rails function (like render partial) would take so long?
>
> Is it because my application is running on a VM?
>
> Thanks in advance!
When you installed active_scaffold, is used a method
Molule::alias_method_chain to branch off the render method.
The new functionality that active_scaffold provided was named
render_with_active_scaffold
and the EXISTING one was renamed to: render_without_active_scaffold.
So in effect, when you see the "without" version in your call stack, it
means you are using the version prior to when you installed
active_scaffold. This will lead you to the conclusion that your
bottleneck IS NOT with active_scaffold...
hth
ilan
--
Posted via http://www.ruby-forum.com/.