-
Enterprise Java
Forcing Tomcat to log through SLF4J/Logback
So you have your executable web application in JAR with bundled Tomcat (make sure to read that one first). However…
Read More » -
Enterprise Java
Standalone web application with executable Tomcat
When it comes to deploying your application, simplicity is the biggest advantage. You’ll understand that especially when project evolves and…
Read More » -
Scala
Parallelization of a simple use case explained
Some time ago a friend of mine asked me about the possibilities of speeding up the following process: they are…
Read More » -
Scala
Non-blocking I/O – discovering Akka
Here comes the time to follow some good practices when implementing actors. One of the most important rules we should…
Read More » -
Scala
Two actors – discovering Akka
Hope you are having fun so far, but our application has serious performance defect. After measuring response times of the…
Read More » -
Scala
Remote actors – discovering Akka
Assume our test application became a huge success and slowly a single server is not capable of handling growing traffic.…
Read More » -
Scala
become/unbecome – discovering Akka
Sometimes our actor needs to react differently based on its internal state. Typically receiving some specific message causes the state…
Read More » -
Scala
Request and response – discovering Akka
In the previous part we implemented our first actor and sent message to it. Unfortunately actor was incapable of returning…
Read More » -
Scala
Your first message – discovering Akka
Akka is a platform (framework?) inspired by Erlang, promising easier development of scalable, multi-threaded and safe applications. While in most…
Read More »