Tagged Questions
The outputcache tag has no wiki summary.
19
votes
8answers
21k views
Clearing Page Cache in ASP.NET
For my blog I am wanting to use the Output Cache to save a cached version of a perticular post for around 10 minutes, and thats fine...
<%@OutputCache Duration="600" VaryByParam="*" %>
...
11
votes
1answer
246 views
Post-cache substitution with Page.Render overriding
The context
I have an Asp .Net web application with some pages that inherit from a base class "BasePage".
This BasePage class inherits from System.Web.ui.Page and I've overriden the Render method so ...
11
votes
4answers
3k views
programatically control output caching - disable or enable cache according to parameter value
We've got a fairly standard e-commerce scenario with paged lists of products within categories. For better or worse, about 80% of visitors never navigate past the first page, depending on the category ...
10
votes
1answer
484 views
Setting optimum http caching headers and server params in ASP.Net MVC and IIS 7.5
I have an ASP.Net site (happens to be MVC, but that's not relevant here) with a few pages I'd like cached really well.
Specifically I'd like to achieve:
output cached on the server for 2 hours.
if ...
10
votes
3answers
2k views
ASP.NET MVC OutputCache doesn't work for root URI
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
...
10
votes
1answer
2k views
ASP.Net MVC Output Caching: The directive or the configuration settings profile must specify the 'varyByParam' attribute
I encountered the above error message after applying the OutputCache attribute on ActionResult methods with no input parameters - why would I use VaryByParams in this case? Is this a bug in ASP.Net ...
9
votes
1answer
402 views
Is it possible to use OutputCache on mvc JsonResult controller methods?
I am trying to do this, and it leads to result with contentlen 0
It looks like:
[OutputCache(Duration = 36000)]
public JsonResult GetFileClasses()
{
return ...
8
votes
1answer
246 views
OutputCache serving long-stale data
I'm flumoxed... re this and this "meta" questions...
A very basic http request:
GET http://stackoverflow.com/feeds/tag?tagnames=c%23&sort=newest HTTP/1.1
Host: stackoverflow.com
Accept-Encoding: ...
8
votes
1answer
569 views
What's the current practice for partial caching in ASP MVC2?
My website pages are composed of two kinds of content. The first is variable between users but constant for all pages. The second is constant across users, but variable between pages. This is a common ...
8
votes
2answers
4k views
Vary by control properties using PartialCaching in ASP.NET
I am using the PartialCaching attribute on the base class of a user control.
I would like the cached controls to vary based on the properties set on the control instance.
For example:
...
8
votes
4answers
8k views
Expire Output Cache ASP.Net MVC
I am using the standard outputcache tag in my MVC app which works great but I need to force it to be dumped at certain times. How do I achieve this? The page that gets cached is built from a very ...
6
votes
2answers
824 views
ASP.NET MVC OutputCache vary by * and vary by user cookie
I have an asp.net mvc 3 project and I have a home controller. I have tagged my Index action with this attribute:
[OutputCache(Location = System.Web.UI.OutputCacheLocation.Any, Duration = 120, ...
6
votes
2answers
336 views
Does MVC OutputCaching take preference over setting cache response headers?
This question is related to my other question.
I have an MVC application with caching disabled for all controller actions. I do this by setting cache response headers in Application_BeginRequest:
...
6
votes
1answer
1k views
How do I use VaryByParam with multiple parameters?
In ASP.NET MVC2 I use OutputCache and the VaryByParam attribute. I got it working fine with a single parameter, but what is the correct syntax when I have several parameters on the method?
...
6
votes
1answer
1k views
Set Page Output Cache VaryByCustom value programmatically
I want to use an Enum value for the types of VaryByCustom parameters I will support, is it possible to do this?
I tried setting it in the page itself
<%@ OutputCache Duration="600" ...
6
votes
3answers
1k views
ASP.NET MVC: Problem with OutputCache
for my current project it's necessary to generate dynamic CSS...
So, i have a partial view which serves as a CSS deliverer... The controller code looks like this:
[OutputCache(CacheProfile = ...
5
votes
1answer
131 views
mvc-mini-profiler with OutputCacheAttribute
im using mvc-mini-profiler on a test site. When i put an OutputCacheAttribute on my action method, the profiler is not executed and always return the last value that he had before the cache.
is there ...
5
votes
2answers
2k views
Chrome Back button page refresh - ASP.net
I have an ASP.net application (c#).
When a user is on a specific page, they click a link on this page that takes them to a child page, displaying the product details.
If the user clicks the browser ...
5
votes
1answer
632 views
How to turn output caching off for authenticated users in ASP.NET MVC?
I have an ASP.NET MVC application. I need to cache some actions (pages) however for some pages I need do such only for non authenticated users.
I've tried to user VaryByCustom="user" with following ...
5
votes
2answers
2k views
How best to work with the Expires header in ASP.NET MVC?
I want to be able to set a long expires time for certain items that a user downloads via GET request.
I want to say 'this is good for 10 minutes' (i.e. I want to set an Expires header for +10 ...
5
votes
1answer
4k views
How to Clear OutputCache for Website without Restarting App
Is there a way clear or reset the outputcache for an entire website without a restart?
I'm just starting to use outputcache on a site and when I make a mistake in setting it up I need a page I can ...
4
votes
8answers
327 views
ASP.net How to output cache a webusercontrol on controls public properties
I have a web user control, it serves some potentially intensive data calculations and I would like it to be output cached so that each page view doesn't recalculate the data. It resides on very ...
4
votes
1answer
44 views
Using Cache Storage in MVC2
I have a class that holds valid licenses for a user and every 15 minutes it is "validated" to ensure the current licenses are valid and add/remove any that may have changed.
Currently, this is ...
4
votes
1answer
648 views
OutputCache and a custom gzip compression filter
I have this custom filter for compress the output of my pages:
public class EnableCompressionAttribute : ActionFilterAttribute
{
const CompressionMode compress = CompressionMode.Compress;
...
4
votes
1answer
293 views
Can you force a delete of (page and partialView) OutputCache in asp.net-mvc
I want an easy way to clear cached pages on my asp.net-mvc website.
I have expensive DB operations so i often use outputcaching to make the site run faster. I have code that looks like this:
...
4
votes
1answer
196 views
Different server & client cache policies in ASP.NET 4.0
I'm missing a little fundamental understanding of ASP.NET Output Caching.
In my case I have resources that are very strongly tied to my VaryByCustom key. On the server-side, I'd love for these to be ...
4
votes
1answer
389 views
OutputCache dilemma with authentication in ASP.NET MVC
I'm writing an ASP.NET MVC site that includes the possibility for users to create accounts and log in. As I also want to cache the site aggressively, I'm running into some trouble mixing caching with ...
4
votes
3answers
576 views
Bypass OutputCache in ASP.NET MVC
I am using the OutputCache attribute in my MVC website as follows:
[OutputCache(Duration = 5000,
VaryByParam = "name;region;model;id;op;content;featured;isStarred;page;size;")]
However ...
4
votes
1answer
426 views
list OutputCache entry
in my asp.net mvc application i'm using the OutputCache attribute on different action method.
Is possible to view the current entries on the cache related to OutputCache attribute?
If i cicle on ...
4
votes
1answer
134 views
How to detect (with server-side code) whether an ASP.NET Page is about to be cached (the first time it is requested)?
Is it possible to detect whether an ASP.NET Page is about to be cached and if so, how?
The HttpCachePolicy object provides only set-methods. The VaryByParams name-value collection is useless if ...
4
votes
1answer
795 views
.NET: Output caching for WebMethod?
Can I have the return value of a WebMethod outputcached? E.g. if the WebMethod has been called in the last X seconds or minutes, don't actually run the method again--just use the same result as it ...
4
votes
4answers
1k views
How do I configure ASP.Net OutputCache to vary by http vs https?
Here is the scenario, a user opens up non-secure page from our WebApp, let's call it PageA, in their browser and then clicks a link in there that takes them to a secure instance of PageB. Once in ...
4
votes
2answers
6k views
What's the best method for forcing cache expiration in ASP.NET?
Suppose I have an ASP.NET application running across several web servers behind a load balancer:
Can I:
Force OutputCache (Page and/or Control level) to expire globally?
Force Data Cache (i.e. ...
4
votes
1answer
915 views
Can I use the ASP.NET 'OutputCache' control to cache images without a performance hit?
I have some ASP.NET MVC actions that generate images dynamically (although it could equally be an ASPX page).
I'm using [OutputCache] to cache these images. I'm just wondering if I need to worry ...
3
votes
2answers
163 views
Why can't I combine [Authorize] and [OutputCache] attributes when using Azure cache (.NET MVC3 app)?
Using Windows Azure's Microsoft.Web.DistributedCache.DistributedCacheOutputCacheProvider as the outputCache provider for an MVC3 app. Here is the relevant action method:
...
3
votes
1answer
75 views
using Caching in user control and VaryByControl
I have a user control in my asp.net application that load it's data from cache. i want it's cache be updated when the value of a variable be changed so i put this code on page directive
<%@ ...
3
votes
2answers
102 views
Priming the asp.net output cache
Is there a way to programmatically prime the asp.net output cache? I've investigated the caching API and can't seem to find an obvious way to do this. Has anyone tried something like this? If so, what ...
3
votes
1answer
382 views
OutputCache and Authorize filters in MVC3
I am reading a book about MVC2, and in the OutputCache section it states:
Warning In the earlier section “How Authorization Filters Interact
with Output Caching,” I explained that [Authorize] ...
3
votes
8answers
170 views
PHP - Is it good practice to cache MYSQL queries in a txt file?
I'm building an online shop & trying to improve performance by minimising MYSQL queries.
Is it good practice to cache the mysql queries via a txt file and then fetch that instead of the query? ...
3
votes
2answers
726 views
Output (server-side) caching of ashx files
I am trying to enable output caching on all ashx files in my site. I'm trying to keep the server from generating the file on each request - NOT trying to tell the browser to cache the file.
I've ...
3
votes
2answers
432 views
ASP.Net MVC 3.0 Attribute [OutputCache] - Is this global, or by session?
When creating an ASP.Net MVC 3.0 application, I can include an OutputCache attribute on an action, and define the duration the cache will persist. After this duration, any activity causing the action ...
3
votes
2answers
345 views
removing Output cache in Index view on update in asp.net mvc
I'm using output caching for some Index views because they contain a lot of data.
I want to keep it specific for every user. because the view can differ depending on the roles.
...
3
votes
1answer
471 views
Anyone get Silverlight Ria Domain Service OutputCaching to work?
I am trying to use client side caching in silverlight by decorating a domain service in a RIA Service like so:
[OutputCache(OutputCacheLocation.Client,3600,UseSlidingExpiration = true)]
public ...
3
votes
3answers
2k views
OutputCache in Razor view engine .cshtml page
Using ASP.NET MVC web forms we can put output cache either in controller level or view level. How can we mention "outputcache" in .cshtml page?
I did not find it anywhere. Where can I get the syntax?
...
3
votes
2answers
3k views
OutputCache behavior in ASP.NET MVC 3
I was just testing Output Caching in the RC build of ASP.NET MVC 3.
Somehow, it is not honoring the VaryByParam property (or rather, I am not sure I understand what is going on):
public ActionResult ...
3
votes
1answer
1k views
How do I disable caching of an individual file in IIS 7 using weserver config settings
Is there any way to diable the caching of a single javascript file in my ASP.NET applicaiton without disabling the caching of any other files in the application?
It is running on IIS 7 in Azure, so ...
3
votes
2answers
114 views
ASP.NET recreating cached control
I solved most of the issues I had with caching. But still there is one thing. I have a UserControl for which I use output caching. Just like this:
<%@ OutputCache Duration="1200" ...
3
votes
1answer
123 views
Does outputcaching varybyparams in webforms understand route parameters?
Does outputcaching VaryByParams in webforms understand route parameters? Such that if I have a route similar to "Content/{filename}/{more}" that I could do VaryByParams="filename" and have it return ...
3
votes
2answers
964 views
Output caching in HTTP Handler and SetValidUntilExpires
I'm using output caching in my custom HTTP handler in the following way:
public void ProcessRequest(HttpContext context)
{
TimeSpan freshness = new TimeSpan(0, 0, 0, 60);
...
3
votes
2answers
197 views
Optimal ASP.Net cache duration for a large site?
I've read lots of material on how to do ASP.Net caching but little on the optimal duration that pages should be cached for.
Let's say that I have a popular site with 50,000 pages. The content does ...