C# 在 MVC3 项目中使用 OutputCache

发布于 2024-12-21 07:34:06 字数 334 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剧终人散尽 2024-12-28 07:34:06

当您想清除某些网址时,可以调用 RemoveOutputCacheItem 静态方法缓存。

You could call the RemoveOutputCacheItem static method when you want to clear some url from the cache.

傾城如夢未必闌珊 2024-12-28 07:34:06

您可以使用 Index 操作结果加载屏幕模板,并使用 AJAX 获取和加载实际数据。

[OutputCache(CacheProfile = "VideoIndexView")]
public ActionResult Index()
{
    ...
    return View(model);  // Really only return a model that is okay to be cached
}

public ActionResult LoadData ()
{
    var Result = // Load the data
    ...
    return Json(Result);  // Don't forget to allow GET here if you're using HTTPGET
}

// Or...

public ActionResult LoadData ()
{
    var Result = // Load the data
    ...
    return PartialView (Result);
}

这样,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.

[OutputCache(CacheProfile = "VideoIndexView")]
public ActionResult Index()
{
    ...
    return View(model);  // Really only return a model that is okay to be cached
}

public ActionResult LoadData ()
{
    var Result = // Load the data
    ...
    return Json(Result);  // Don't forget to allow GET here if you're using HTTPGET
}

// Or...

public ActionResult LoadData ()
{
    var Result = // Load the data
    ...
    return PartialView (Result);
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文