Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dissimilar Scala book in near future [closed]

Tags:

scala

I've seen quite a few books about Scala, but those are so similar to each other. Wonder what titles (related to Scala) would you like to see that would differ from "main stream"?

like image 849
Roman Kagan Avatar asked Dec 18 '22 07:12

Roman Kagan


2 Answers

At this point, all Scala books are about teaching Scala. That's natural, as most readers won't be familiar with Scala.

As time passes, we'll likely need books with Scala Patterns (which can be very different from Java patterns) and anti-Patterns, coding tips, advanced algorithms, or topic-specific, like concurrency or strategic programming.

The Lift book kind of fits in the category of topic-specific, but it is really much more about the Lift library and Lift usage than about general Scala usage for web programming.

like image 96
Daniel C. Sobral Avatar answered Dec 19 '22 20:12

Daniel C. Sobral


Another topic-specific book on the way is "actors in scala" - which was mentioned at the Scala BASE meetup - currently being authored (or co-authored at least) by Martin Odersky.

The actors framework offers a substantially new concurrency model (pioneered in Erlang) that aims to make writing concurrent code easier than traditional shared state concurrency, as well as offering better scalability for multi-core architectures.

like image 44
ctwomey Avatar answered Dec 19 '22 19:12

ctwomey