• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

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.


  •  
    You got style baby! More than this tiny ad:
    We need your help - Coderanch server fundraiser
    https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
    reply
      Bookmark Topic Watch Topic
    • New Topic