Nick B.
Nick B.

Reputation: 69

Can Reliable Collections be used outside of Service Fabric?

I have an existing application that would greatly benefit from reliable collections, but I don't want to port all or part of it to Service Fabric. Is it possible to make use of the Reliable Collections with a custom backend that isn't part of Service Fabric?

Upvotes: 2

Views: 225

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

No, they are part of Service Fabric stateful programming model, however you can use collections from System.Collections.Concurrent and save the state in Redis Cache for example.

Upvotes: 3

Related Questions