scalablity of Scala over Java
Posted
by
Marcus
on Programmers
See other posts from Programmers
or by Marcus
Published on 2012-06-07T06:24:22Z
Indexed on
2012/06/07
10:47 UTC
Read the original article
Hit count: 461
I read an article that says Scala handles concurrency better than Java.
http://www.theserverside.com/feature/Solving-the-Scalability-Paradox-with-Scala-Clojure-and-Groovy
...the scalability limitation is confined specifically to the Java programming language itself, but it is not a limitation of the Java platform as a whole...
The scalability issues with Java aren't a new revelation. In fact, plenty of work has been done to address these very issues, with two of the most successful projects being the programming languages named Scala and Clojure...
...Scala is finding ways around the problematic thread and locking paradigm of the Java language...
How is this possible? Doesn't Scala use Java's core libraries which brings all the threading and locking issues from Java to Scala?
© Programmers or respective owner