vote up 1 vote down star
1

I am java developer and heard a lot about ruby. My real question is can we develop large scale enterprise (web) application in ruby ? Because I heard that ruby is good for small application, but like java we can't develop large scale scalable (web) application in ruby.

flag

74% accept rate

5 Answers

vote up 4 vote down

In Ruby? Sure - for most meanings of "enterprise". When you're talking about ruby and web apps, chances are you're talking about Ruby On Rails, or Merb (which will be the same thing in the next release). With either framework, ways to scalability are fairly well understood.

I suspect that you could probably still achieve higher levels of throughput for a given hardware configuration with a Java solution. Costs for additional hardware could very likely be more than offset by reduced cost to deliver a solution with a Ruby framework - as a language it's typically much more concise than Java.

The more "enterprise" and "scalable" you need your app to be, the more you're going to have to work to remove bottlenecks - just like you would with a Java app.

New Relic have quite a few useful items on the subject, and Googling for "scaling rails" yields a lot more.

link|flag
vote up 1 vote down

In a "large scale scalable (web) application" size, you (almost) always depend on DB scaling and heavy caching, not the framework itself, so it doesn't matter what language you use.

link|flag
vote up 0 vote down

This actually depends on what you mean by "large scale" and "enterprise".

There is a book "Enterprise Integration with Ruby" about a lot of things you'd do in an enterprise settings. The book recommends low ceremony solutions and out of the box thinking. I like it.

link|flag
vote up 0 vote down

Yes, it is just rumor. I wouldn't worry about it too much. It used to be much less stable, but it has gotten way better in the last few years.

link|flag
vote up 0 vote down

You really are asking two questions here:

1) Is Ruby enterprise ready compared to Java?

Ruby has access to all the Java libraries using JRuby if need be, but Ruby is definitely lacking a proper "pure" Ruby managed application server environment like JBoss, Weblogic or Websphere. (+1 for Java)

2) How does Ruby scale compared to Java?

Most scalability is related to finding bottlenecks faster, and in Ruby you will develop much faster than in Java, so hits the bottlenecks a lot faster, allowing you to optimize your application faster. For example, you will be able to optimize your database much sooner with a Ruby on Rails application compared to a Java application. (+1 for Ruby)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.