Search Results

0
votes

Is JRuby ready for production?

JRuby is among the fastest Ruby implementations right now and definitely production ready. Here's some "success stories" from jruby.org: …
2
votes

Ruby/Rails thread safety

The normal solution for MRI is to run multiple Rails instances, each handling requests independently. Since MRI isn't multithreaded anyway, you can't run multiple Rails instances on top of it. This …