On Dec 15, 5:09 am, Michael Pavling <[email protected]> wrote: > On 15 December 2011 07:41, Pieter Hugo <[email protected]> wrote: > > > Dont know about IIS but running rails on Windows is dog slow. I develop > > on a Windows box and deploy on Linux and the speed difference is marked. > > Have heard the same from others. > > Is that difference as noticeable if you run your Windows development > machine in "production" mode?...
The performance difference is in startup, not execution. Code load and reload (during dev) slower on Windows than Linux, and is due how Ruby C code is implemented. Once the application starts performance is very good. I've blogged about my presentation at RubyConf Argentina: http://blog.mmediasys.com/2011/11/26/rubyconf-argentina-and-fenix/ (Sorry, slides are in spanish) And someone blogged about the work I mention there before: http://itreallymatters.net/post/12897174267/speedup-ruby-1-9-3-on-windows Cheers, -- Luis Lavena -- 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.

