Re: [akka-user] Cluster sharing without persistence? How to relay entity id to props?

2016-06-09 Thread Akka Team
Hi, By "sharing" you mean "sharding" right? It is completely possible to use sharding without akka-persistence. You can use custom persistence to achieve saving and restoring state of an actor. Alternatively, you can use persistence with only snapshots, and you might use your own SnapshotStore pl

Re: [akka-user] Cluster sharing without persistence? How to relay entity id to props?

2016-06-06 Thread Justin du coeur
On Mon, Jun 6, 2016 at 1:19 PM, kraythe wrote: > I have an actor that I would like to use cluster sharing for but the thing > is that the actor will restore its state from a database in the event of > migration and so on. So there is no need to journal the messages and thus > no need for Akka per

[akka-user] Cluster sharing without persistence? How to relay entity id to props?

2016-06-06 Thread kraythe
I have an actor that I would like to use cluster sharing for but the thing is that the actor will restore its state from a database in the event of migration and so on. So there is no need to journal the messages and thus no need for Akka persistence. I have the vast majority of it sorted, but