vote up 6 vote down star
3

I'm learning ASP.NET MVC and bugged by one issue.

In the HomeController, the Index action has OutputCache attribute, but it seems doesn't work.

[HandleError]
public class HomeController : Controller
{
    [OutputCache(Duration=5, VaryByParam="none")]
    public ActionResult Index()
    {
        ViewData["Title"] = "Home Page" + DateTime.Now;
        ViewData["Message"] = "Welcome to ASP.NET MVC! " + DateTime.Now;

        return View();
    }
}

After quite a few minutes trying, I found that it is due to the way I access the action. If I access it through "http://localhost:3573/", the outputcache doesn't work. However, if I access it with "http://localhost:3575/Home/Index", the outputcache works.

Anybody know any workaround to make the default controller-action outputcacheable?

Thanks.

flag

53% accept rate
I'm seeing the same problem here. – Mauricio Scheffer Jan 16 at 18:54
any of you people using chrome? i've noticed some wierdness in chrome caching – Simon Apr 2 at 22:20
seen same within FF3 – dove Aug 17 at 15:29

2 Answers

vote up 7 vote down check

Hi Morgan, I think this is a bug in ASP.NET MVC. We have logged the issue in our database and will investigate a fix for this issue.

Thanks, Eilon

link|flag
Will you also fix the bug where setting VaryByParam to "None" will emit the HTTP response header "Vary: *", which is the opposite of what should happen? – bzlm Mar 1 at 18:35
@Eilon I'm still seeing this still as an issue, have you any recommendations for caching a root uri? other than redirecting to /home ;) – dove Aug 17 at 15:52
vote up 0 vote down

using VarByParam="" seems to make it work

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.