I would recommend using the Play actor system instead of your own – Play ensures that the actor system's lifecycle is correctly managed, that the right classloader is used, etc etc, all for you. If you don’t use Play’s actor system, then you will need to manage this yourself, or you will have out of memory problems when using Play's reloading mechanism in development mode.
/Patrik On Tue, May 19, 2015 at 6:10 PM, Dragisa Krsmanovic <[email protected]> wrote: > Play already has two actor systems. One called "play" for internal use of > Play framework and one called "application" that you can access via > play.api.libs.concurrent.Akka for you to use. > > > > On Tue, May 19, 2015 at 1:42 AM, Gabriele Favaretto < > [email protected]> wrote: > >> In a Play application, would be the advantages of using a different >> ActorSystem respect the Play one? >> Are there any production environments where using another ActorSystem was >> useful or necessary? >> >> -- >> >>>>>>>>>> Read the docs: http://akka.io/docs/ >> >>>>>>>>>> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional/faq.html >> >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user >> --- >> You received this message because you are subscribed to the Google Groups >> "Akka User List" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> Visit this group at http://groups.google.com/group/akka-user. >> For more options, visit https://groups.google.com/d/optout. >> > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: > http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Patrik Nordwall Typesafe <http://typesafe.com/> - Reactive apps on the JVM Twitter: @patriknw -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
