How is it possible to invalidate the whole output cache in asp .net mvc 2?
相关问题
- Invalidate Google Cloud CDN cache from the backend
- jsp caching tag library
- how to get full servername and port running in mvc
- How can we cache HLS video url once streamed
- Hibernate cache level 1
相关文章
- “Dynamic operations can only be performed in homog
- Is there a google API to read cached content? [clo
- AWS API Gateway caching ignores query parameters
- Check if url is cached webview android
- WebView's LOAD_NO_CACHE setting still saves fi
- QML Loader not shows changes on .qml file
- UnitOfWork in Action Filter seems to be caching
- Python: Is there any reason *not* to cache an obje
While I don't know if there is a way to do it in code, still recycling the worker process might invalidate the server cache.
If this is true then you might even do it in code by having code to do the recycling.
AFAIK this is not possible. You can only invalidate specific actions that might have been cached by decorating them with the
[OutputCache]
attribute.