[Rails] Performance question about ruby/rails

2011-04-28 Thread egervari
I have a program I'd like to write and I'd like to get off of Java and start using something more productive. I have played around with Rails, and I think I could the same app in a fraction of the time. There's one part of the app though that I am not if Rails/Ruby would be a good fit... so I'd

Re: [Rails] Performance question about ruby/rails

2011-04-28 Thread radhames brito
Ruby already has may c apis that run very fast with a ruby wrapper around them c code. Also, you can run services that respond to all this, it would work like memcached does, extremely fast service with a ruby client. I dont recommend having the thesaurus as a pure ruby gems. If you can work

Re: [Rails] Performance question about ruby/rails

2011-04-28 Thread Bill Walton
Hi Ken, On Thu, Apr 28, 2011 at 9:39 AM, egervari ken.egerv...@gmail.com wrote: I have a program I'd like to write and I'd like to get off of Java and start using something more productive. I have played around with Rails, and I think I could the same app in a fraction of the time. Welcome!

[Rails] performance question

2011-01-27 Thread klochner
I got sidetracked while benchmarking ruby factorial code: http://rosettacode.org/wiki/Factorial#Ruby I put all that code into test_fact.rb and ran with: ruby test_fact.rb rails runner test_fact.rb #from a fresh rails app rails runner test_fact.rb #from a mature rails app here are the