Differnce in development,production

Hi
I would like to know the differnece in performance when I start my
server
ruby script/server -e production
Is there differnece in execution speed

Thanks in advance
Sijo

On Aug 25, 10:27 am, Sijo Kg [email protected] wrote:

Hi
I would like to know the differnece in performance when I start my
server
ruby script/server -e production
Is there differnece in execution speed

The main difference is that you application code will be reloaded on
each request, which obviously doesn’t come for free.

Fred

On Mon, Aug 25, 2008 at 2:29 AM, Frederick C. <
[email protected]> wrote:

The main difference is that you application code will be reloaded on
each request, which obviously doesn’t come for free.

Fred

Hi, the other thing is that caching is disabled in development mode.
-Conrad