What about Dynamic languages written for Java such as Groovy or ColdFusion?
Java-based Startups, do they exist?
1–10 of 39 posts
Re: Java-based Startups, do they exist?
#2Re: Java-based Startups, do they exist?
#3Re: Java-based Startups, do they exist?
#4Re: Java-based Startups, do they exist?
#5Re: Java-based Startups, do they exist?
#6Re: Java-based Startups, do they exist?
#7Re: Java-based Startups, do they exist?
#8I still decided against Java because I feel that meta programming could be that great enabler of the next productivity revolution. A revolution that smarter people than me have experienced ages ago. Having explored Java to some extremes, I know that many of the complexities of something like J2EE are down to the lack of powerful language internal meta programming facilities.
Why not JRuby? Because right now JRuby is even slower than C based Ruby and Ruby 2 will have a virtual machine too, which doesn't have to concern itself with anything other than serving Ruby.
Yes, Java has a lot of libraries. But how many of those am I really using in my startup? Quite a few, and it does take me some time to figure out good alternatives for Ruby. But at the end of the day the library issue doesn't make a big difference in my case.
The only thing that really concerns me about the popular dynamic languages is raw speed for algorithmic stuff. Yes I do need that for what I'm doing. If lisp had any momentum whatsoever I'd gladly jump onto something like sbcl because it has all the metaprogramming facilities and it's as fast as C.
Re: Java-based Startups, do they exist?
#9Re: Java-based Startups, do they exist?
#10We're using both Java and Ruby. We started out with Ruby and Rails, which worked great for the prototype but we have some very processor-intensive operations and the Ruby code won't scale. Rewriting these in Java produced an instant 100-fold performance improvement, so going forward we're doing that stuff in Java. On the other hand, we have some text-processing stuff where Ruby really shines. Having used Ruby for tha…