Persistent Actors in Akka.NET

added by DotNetKicks
7/28/2016 4:09:18 AM

647 Views

By default, actors in Akka.NET lose their internal state when they are restarted, for example due to an internal actor error or a system crash. Akka.Persistence adds additional functionality to enable the storing and restoring of actor state. There are 2 main persistence concepts: journal storage and snapshot storage.


0 comments