Scala
-
First steps with REST, Spray and Scala
On this site you can already find a couple of articles on how to do REST with a multiple of…
Read More » -
Akka Notes – Actor Supervision – 8
Failures are more like a feature among distributed systems. And with Akka’s let it crash fault tolerance model, you could…
Read More » -
Clustering reactmq with akka-cluster
In the last two posts on reactmq, I described how to write a reactive, persistent message queue. The queue has…
Read More » -
Akka Notes – DeathWatch – 7
When we talked about Actor lifecycle, we saw that Actors could be stopped by various means (using ActorSystem.stop or ActorContext.stop…
Read More » -
From Java 7 Futures to Akka actors with Scala
This blog post will show you how a step by step transition from a “java 7 and j.u.c.Future” based implementation…
Read More » -
Keeping the Meaning with the Bytes
Back to the Future… This post was from November 2006. I had just started playing with Scala and was trying…
Read More » -
Testing your plugin with multiple version of Play
So, you’ve written a plugin for Play…are you sure it works? I’ve been giving Deadbolt some love recently, and as…
Read More » -
Akka Notes – Child Actors and ActorPath – 6
Actors are completely hierarchical. Whatever Actors that you create HAS to be a child of some other Actor. Let’s analyze…
Read More » -
Akka Notes – Actor Lifecycle – Basic – 5
(Please note that this lifecycle write-up does not cover the preRestart or the postRestart methods. We’ll talk about them when…
Read More »