I am trying to understand the differences between Akka and Gridgain. Please explain when one is more suitable than the other and for what problems?
I am trying to understand the differences between Akka and Gridgain. Please explain when
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Akkaimplements theActor Frameworkin Scala/Java.The main use case of using Akka is when you need a massively concurrent application.
Think telecom applications where you need to route messages. In fact Akka finds its inspiration from Ericsson’s Erlang.
Here are some more use cases from the Akka site : http://doc.akka.io/docs/akka/current/intro/use-cases.html
GridGainappears to be a data processing framework using Map Reduce concepts internally.Think Big Data here. To process insanely large data sets you need better processing frameworks.
Disclaimer : I haven’t used GridGain.