views:

117

answers:

2

Hello !

I made some searches on Google, and I read some posts, articles and benchmarks about Ruby on Rails being slow and I am planning to build one website that will have a good amount of users inserting data and there will be some applications to process this data (maybe in Ruby, you can help me choosing the language).

What is the real performance of Ruby on Rails with large traffic ?
Thank you !

+2  A: 

You are asking a lot of questions, so I'll just try to answer you're first one. It is true that ruby, as a language, is slower compared to some others. This means that rails may not perform as well as some other frameworks. However, most websites will not receive the sort of traffic that poses a problem. The productivity gained by using rails most definitely outweighs the potential performance issues you may have later.

bennybdbc
+1  A: 

Dynamic web pages are slower than static, in general. Scale and performance are more about good design and caching than language choice.

marr75