I've got a stateless service which simply allows READ operations against a remote database.
In order to remove the bottleneck of traffic to a remote resources, I'd like to cache the database locally, especially since it is very low transaction volume and a small dataset - around 10 megabytes.
I still need to be able to perform SET operations, such as JOINS against the data.
Does Service Fabric specify how to periodically cache a data source such as SQL Server?
I know there may be different ways to skin this cat, but I don't want to have to re-invent the wheel.