Re: [akka-user] Akka Cluster Sharding in Chat room app

2018-02-09 Thread Vladyslav Petrov
Thanks for the quick response. I will try =) пятница, 9 февраля 2018 г., 16:31:42 UTC+2 пользователь Konrad Malawski написал: > > No. > I mean that the sharded actor would extend PersistentActor, which gives > you that recovery > > -- > Cheers, > Konrad 'ktoso ' Malawski >

Re: [akka-user] Akka Cluster Sharding in Chat room app

2018-02-09 Thread Konrad “ktoso” Malawski
No. I mean that the sharded actor would extend PersistentActor, which gives you that recovery -- Cheers, Konrad 'ktoso ' Malawski Akka @ Lightbend On February 9, 2018 at 14:21:06, Konrad “ktoso” Malawski ( konrad.malaw...@lightbend.com)

Re: [akka-user] Akka Cluster Sharding in Chat room app

2018-02-09 Thread Vladyslav Petrov
Konrad, you mean using Cluster Sharding with persistence mode? пятница, 9 февраля 2018 г., 15:21:17 UTC+2 пользователь Konrad Malawski написал: > > Hi there, > sharding is the thing that “starts things on the other node”. > The thing that “recovers state” is akka persistence: >

Re: [akka-user] Akka Cluster Sharding in Chat room app

2018-02-09 Thread Konrad “ktoso” Malawski
Hi there, sharding is the thing that “starts things on the other node”. The thing that “recovers state” is akka persistence: https://doc.akka.io/docs/akka/snapshot/persistence.html?language=scala One often uses those two together, gaining the capability you just hinted at. Happy hakking --