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
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
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