Re: [akka-user] State Replication in ORMultiMap

2017-06-20 Thread Mushtaq Ahmed
Thanks Patrik! I will read though the snapshot docs. Good to know the answer was none of the above :) On Mon, Jun 19, 2017 at 2:45 PM, Patrik Nordwall wrote: > ORMap and ORMultiMap have support for deltas. Nested deltas can be > difficult so the current

Re: [akka-user] State Replication in ORMultiMap

2017-06-19 Thread Patrik Nordwall
ORMap and ORMultiMap have support for deltas. Nested deltas can be difficult so the current implementation is sending the full state of the changed entry of the ORMap, i.e. the 1000 items of the "a" ORSet in your example. There is variant of ORMultiMap that supports nested deltas but it has some

Re: [akka-user] State Replication in ORMultiMap

2017-06-18 Thread 'Michal Borowiecki' via Akka User List
ORMap and ORMultiMap don't mention delta support. On the contrary, docs for Maps say: When a data entry is changed the full state of that entry is replicated to other nodes, i.e. when you update a map the whole map is replicated. Therefore, instead of using one|ORMap|with 1000 elements it is