ScalABM / auctions

A functional API for auction simulations
Apache License 2.0
13 stars 1 forks source link

Check out Akka persistence module #102

Open davidrpugh opened 7 years ago

davidrpugh commented 7 years ago

@bherd-rb and @phelps-sg Take a look at the Akka persistence module for dealing with stateful actors...

Akka persistence enables stateful actors to persist their internal state so that it can be recovered when an actor is started, restarted after a JVM crash or by a supervisor, or migrated in a cluster.

Example use case would be recovering the state of an auction running on a node in a cluster that has failed.