• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Scala and other functional languages

 
Ranch Hand
Posts: 1907
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Author,
In terms of scalability,how Scala compares to Erlang ? Erlang uses its own virtual machine where as Scala is JVM based. What Erlang proponents say is no matter how much memory available, one can create thousands of Erlang processes. There is no one-one mapping between Erlang process and OS-thread. Hence Erlang is considered good for server side programs.
Are there any specific areas/use cases where Scala is obvious choice over other languages ?

Thanks
 
Bartender
Posts: 2407
36
Scala Python Oracle Postgres Database Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Some reasons to consider Scala might include:

  • You need to inter-operate easily with an existing JVM-based application.
  • Your developers come from the Java world.
  • You want to be able to make a gradual transition from Java to a more functional approach without a "Big Bang" conversion.
  • You want the benefits of a language like Scala only for certain parts of your system - e.g. testing, concurrency etc.


  •  
    reply
      Bookmark Topic Watch Topic
    • New Topic