In my web application, I have some pre-calculated values โโthat are stored in Page.Cache. At this point, I need to move this functionality to the webservice.
So, I need to introduce similar functions in the webservice - calculate the values โโthe first time the web method is called and save it in the cache.
Is it possible to put some values โโin the cache (not in the application or session - I need to clear these values โโafter a certain period of time) from the webservice?
source
share