> -> I personally found in development machines that Ruby (webrick) is > faster than JRuby (webrick). Am I correct? Will it be the same in > Production environment too? > This is incorrect. Running a rails application in development environment is different from production. By default, development reloads all models so you can develop faster. Additionally, JRuby has a very slow startup time due to JVM warmup time but once it's running, it should be faster. I wouldn't recommend using webrick in production.
Nginx/passenger is a good start for serving rails 3. Nginx/Jetty would be good if you use jruby. Just warble your war and drop it in. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/MyXWNmhC370J. 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.

