7

Based on the docs on akki.io I'm not seeing what common use cases the MicroKernel solves? Does anyone have some simple real world use cases?

thanks

James
  • 15,085
  • 25
  • 83
  • 120

1 Answers1

6

The Akka Microkernel module gives you a very light-weight and free "application server" bundle so it's easy to distribute and run your Akka application.

Read more about it here: http://doc.akka.io/docs/akka/2.0.1/modules/microkernel.html

Viktor Klang
  • 26,479
  • 7
  • 51
  • 68
  • Is the microkernel something you would distribute with your application? Or would you distribute your application and expect someone to download the microkernel separately and use it to load/execute the application? I assume it is the latter since Akka does the former without the microkernel. Can it execute multiple applications at once? – cessationoftime May 20 '12 at 20:01
  • 1
    Either you distribute your app inside a microkernel, or you expect others to already have a microkernel set up. – Viktor Klang May 20 '12 at 21:58
  • that answers it perfectly, so instead of running my app as a tomcat webapp, I could just deploy it without tomcat using the microkernel to load it up(no longer as a webapp obviously) – James May 21 '12 at 23:25