filipw / Strathweb.CacheOutput

ASP.NET Web API CacheOutput - library to allow you to cache the output of ApiControllers
Other
882 stars 253 forks source link

can Strathweb.CacheOutput support Destributed server and Lazy Loading ? #195

Open behrouzmoslem opened 7 years ago

behrouzmoslem commented 7 years ago

I am working in a health center. Where there are high transaction information. From the beginning of Sql Server is used. In programming API, requires the use of Cache system that is synchronized with the server Destributed and Lazy Loading to support. Is Strathweb.CacheOutput right for me?

dmalanij commented 7 years ago

I'm not sure I understand your question. What are you trying to cache? Are you creating a common WebAPI or using OData?

Remember that CacheOutput stores the controller's responses once they're generated (actually, once they're formatted according to the MediaType specified by the Accept header), so it really doesn't matter whatever is your real backing system for the services (SQL Server through an ORM, other web services, a dummy in memory example, whatever). Are you sure you are looking for caching responses? O you just need a distributed caching system for general purposes but not particularly the output of the controllers?