Tamajit
Tamajit

Reputation: 37

Alternative solution for Azure Service Fabric distributed cache

I have an application running in Service Fabric with multiple nodes. All the running nodes share some cache data using distributed caching available in Service Fabric.

Now, I am looking to move out from Service Fabric due to cost issues. What would be a good solution for me where I can also maintain caching between multiple instances ( like the distributed cache in Service Fabric).

I need to install it in an Azure environment.

Upvotes: 0

Views: 119

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

If you're looking for an alternative managed by Microsoft, the best choice would be Azure Redis Cache.

More info:

https://learn.microsoft.com/en-us/azure/azure-cache-for-redis/

Upvotes: 0

Related Questions