up vote 25 down vote favorite
12
share [g+] share [fb]

Has anyone out there worked on, or know of any real-world Scala applications? There has been a lot of talk lately, and I have even gone so far as to start learning it. I'd like to know if there are any real-world indicators out there as to whether my benefit from learning scala will be purely academic, or whether this skill will be worth something on a resume in the future.

EDIT: Thank you for the three answers so far - they indicate different crucial pieces of the puzzle - tool support, experimentation/academic support and the brave few who venture out there and try to build a for-profit application with it.

link|improve this question

30% accept rate
feedback

8 Answers

As a relatively fledgling language, the examples are, as you've surmised, still somewhat scarce. With any luck, this won't be the case much longer :-)

Hope this helps!

link|improve this answer
The liftweb link is broken. Try liftweb.net – Seun Osewa Jun 6 '10 at 21:22
feedback

Twitter also uses Scala for both back-end and front-end production code. See my blog here http://kevinoncode.blogspot.com/2008/10/octobers-bay-area-scala-enthusiasts.html and http://kevinoncode.blogspot.com/2008/10/octobers-bay-area-scala-enthusiasts_17.html

link|improve this answer
Do you have any source material that references Twitter using Scala? This is huge, if it can be verified. (I'm thinking about the future, if I want to make a business case for using Scala.) – Julie Oct 17 '08 at 3:49
I was actually told this by the employees of Twitter directly while I was at Twitter's HQ. I wrote about this in my blog here: kevinoncode.blogspot.com/2008/10/… and kevinoncode.blogspot.com/2008/10/… – Kevin Albrecht Oct 20 '08 at 20:02
feedback

Take a look at Jonas Bonér's blog series beginning with Real-World Scala: Introduction:

The last nine months I have been running my own business together with some friends (Triental AB). We are building a product suite for private banking and wealth management with a focus on portfolio management, analysis and simulation.

followed by Real-World Scala: Dependency Injection ... export more in the series,

There is also some discussion on Artima.

link|improve this answer
feedback

As this is still on the 1st place in Google for "Scala real world applications", and most of answers come from 2008 I'll try to list some more real world applications.

There are some well-known companies using Scala:

and more

Scala has at least two actively developed web frameworks - Lift and Play. Also, there is a good concurrency framework - Akka actors Scala is supported by Heroku, which is a good hosting platform for smaller applications.

There are good testing solutions, for example, ScalaTest and ScalaCheck. The latter one, is similar to Haskell's QuickCheck and automatically generates and shinks test cases - cool thing.

There is an intensively developed Eclipse support too.

My definition of "real world" includes also practically oriented research. Scala has an active research environment, which produces ideas for making software better. One of my favourite Scala papers is Deprecating the observer pattern.

link|improve this answer
Feel free to add anything you want. Probably I've omitted a lot. – Rafał Rawicki Jan 24 at 18:49
feedback

There is Lift, a web framework based on Scala.

link|improve this answer
feedback

There's a library for language processing, Kiama. It is a pretty cool one because you can analyse and transform a language into another pretty easily with this. More time will be spent thinking than coding when using this library: http://code.google.com/p/kiama/

link|improve this answer
1  
Kiama is a fabulous library. It is patterned after Stratego/XT. – Randall Schulz Jul 28 '10 at 2:53
I had no idea it's that famouse =) Yes it is patterned after Stratego/XT. A little bit confusing and unusual way to program at first, but very efficient when you get it. – Enrico Susatyo Jul 28 '10 at 5:30
feedback

Two examples I have found recently:

1) An article about a website written in Scala.

2) A company is "building a product suite for private banking and wealth management with a focus on portfolio management, analysis and simulation", as Jonas Bonér states. He has interesting observations on Scala, by the way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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