C# 在 MVC3 项目中使用 OutputCache
我正在使用 MCV3 OutputCache 来减少包含充满数据的表的页面的加载时间。我使用 ajax 方法来更新信息并操作 DOM 来向用户表明他们的更改已成功。这很好,直到他们加载页面并且加载缓存的数据集而不是更新的数据集。
当调用 Update 方法时,我想清除缓存或将其删除,以便在重新加载页面时使用新的更新数据重新创建它。
我的代码如下:
[OutputCache(CacheProfile = "VideoIndexView")]
public ActionResult Index()
{
...
return View(model);
}
I am using MCV3 OutputCache to decrease the loading times of a page with a table full of data. I use ajax methods to update information and manipulate the DOM to show the user that their change has been succesful. This is fine until they load the page and the cached dataset is loaded instead of the updated one.
When the an Update method is called I would like to clear the cache or remove it, so that it is recreated on reload of the page, with the new updated data.
My code is as follows:
[OutputCache(CacheProfile = "VideoIndexView")]
public ActionResult Index()
{
...
return View(model);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您想清除某些网址时,可以调用 RemoveOutputCacheItem 静态方法缓存。
You could call the RemoveOutputCacheItem static method when you want to clear some url from the cache.
您可以使用
Index
操作结果加载屏幕模板,并使用 AJAX 获取和加载实际数据。这样,
Index
就可以很好地缓存,并且在页面提供给用户后,数据将被加载并注入到页面中。如果您打算使用 jQuery 之类的东西,请务必告诉它在使用 GET 时不要使用缓存结果。You could use your
Index
action result to load a template of the screen and use AJAX to get and load the actual data.This way,
Index
can be cached just fine and the data will be loaded and injected into the page after the page has been served to the user. If you are going to use something like jQuery, be sure to tell it not to use cached results if you're using GET.