ASP.Net Caching

前端 未结 5 1878
再見小時候
再見小時候 2021-01-23 01:41

I\'ve got an application that downloads data from a 3rd party at 3am every morning Nothing changes in terms of content until then...

is it possible to cache the \"produc

5条回答
  •  感动是毒
    2021-01-23 01:57

    I would persist that 3rd party data every 24 hours. Caching it depends on what that data is. Is it a file that needs further processing? Then process it and cache it in memory. And your fail over goes like this: in-memory cache, temp persistent location, 3rd party location.

提交回复
热议问题