Reputation: 1317
Is there any nice way to do a IReliableDictionary<key,List> ? I would imagine that the list would not be atomic and run into concurrency issues. Is there any nice way to do this ? I could imagine it would be useful for building indexes as well. eg IReliableDictionary<index,List<Guid>>.
Upvotes: 1
Views: 331
Reputation: 9050
Not just concurrency issues, but data corruption and poor replication performance as well if you're not careful. Read through this guide for a detailed explanation: https://azure.microsoft.com/en-us/documentation/articles/service-fabric-work-with-reliable-collections/
tl;dr:
Upvotes: 2