OutPut Cache is the caching technique to cache the static pages in ASP.net.

learn more… | top users | synonyms

1
vote
0answers
18 views

Mvc 3 outputcache varyByCustom extension

[OutputCache(Duration = 120, VaryByCustom = "siteId")] public ActionResult Index() { if(ConfigHelper.SiteId == 1) //massive logic here; else if(ConfigHelper.SiteId == 2) ...
0
votes
0answers
17 views

Nested control and caching

I have two nested controls. I want to cache the control on the outside and not cache the control on the inside. On the outer control I have set cache for 1800 seconds <%@ OutputCache ...
-1
votes
0answers
12 views

Why did not OutputCacheProvider class does have option like OutputCacheProvider<T> implementation? [closed]

Why did not OutputCacheProvider class does have option like OutputCacheProvider(T) (Generic version of ) implementation ? Or Guide similar ones so that we can have Generic Cache items, to avoid ...
0
votes
1answer
84 views

ASP.NET MVC4 - OutputCache exception

I'm able to appropriately utilize the ASP.NET MVC4 OutputCache with the following code as an attribute on my Controller's Index(): [OutputCache(Duration = 600, VaryByParam = "none")] However, To ...
1
vote
2answers
37 views

Outputcache override with query string showing non cache version in asp.net mvc

Id like to show a page non cached, but still take advantage of outputcache. Say a admin would like to see the page updated in real time by adding a query string nocache=1 to the url, then the ...
0
votes
0answers
77 views

GetVaryByCustomString in global.asax not called for cached responses in custom HTTP handler

I have the following code in the ProcessRequest method of a IHttpHandler instance: public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/css"; ...
0
votes
0answers
14 views

can output caching lock my disk?

right now I have nearly 600,000 rows of data, there will be more than 600,000 rows later, It will be a shopping website so the content of a product will not change. The url to call the page by id is ...
0
votes
1answer
79 views

Output caching in IIS doesn't work for Wordpress php files

I enabled output caching for php files <configuration> <system.webServer> <serverRuntime frequentHitThreshold="1" frequentHitTimePeriod="00:00:30" /> <caching> ...
2
votes
0answers
125 views

ASP.net MVC OutputCache parameter priority - Duration vs SQLDependency

I'm building a ASP.net MVC 4 system that is very load intensive and want to use the OutputCache attribute on the two key pages. The OutputCache has the desired effect in making the pages very quick ...
0
votes
0answers
31 views

Using Donut Caching with OutputCache Provider to remove cache items

I've currently got a custom outputcacheprovider working with donut caching and it stores the values in mongo. How would I make use of the donut overloads as specified in this blog to remove and add ...
0
votes
1answer
103 views

asp.net mvc after logout when login from other user previous users detail is showing

I have a web application, when the first user logs in and open his profile and logout. when second user login on same computer after logout first user, and open profile, it showing first user ...
0
votes
0answers
32 views

Which take preferance when we have multiple entries for Cache control?

I wanted to disable Application level cache for my ASP.NET application. So I have added following Custom header in web.config <httpProtocol> <customHeaders> <add ...
0
votes
0answers
46 views

Can I Force OutputCache to cache my custom response headers?

I've got an ASP.NET webform that uses output caching, and I set some custom response headers when the page is rendered (e.g. X-MyCustomHeader). On a cold cache hit, my custom headers are set on the ...
2
votes
1answer
72 views

Caching output of MVC actions but using the cached version only for authenticated users

I'd like to cache the output of my MVC actions. However: 1) If I apply the OutputCacheAttribute globally, it is risky as it caches everything for all users. 2) If I apply OutputCacheAttribute ...
0
votes
1answer
55 views

Programmatically caching a bunch of pages all at the same time using the Output Cache

I have an MVC4 website and I'm using the OutputCache to cache the result of a view that displays multiple pages of ranked results. The cached output varies on the Page parameter. The rankings are a ...
1
vote
0answers
44 views

OutputCache not working for a single News page in Composite C1 CMS

I've just installed the Composite.News package and trying to make it work together with OutputCache. The News page itself is being serviced by OutputCache, but the single NewsItem with url like ...
0
votes
1answer
136 views

Overridden GetVaryByCustomString method being called only on first request to a page

I have the following question regarding outputcache work in either ASP.Net or Composite C1 CMS (don't know where's the problem): I need to vary cache by cookie named "City". In Global.asax I've ...
0
votes
1answer
155 views

ASP.NET MVC4 output caching to prevent duplicate insertions in database

I am working currently on an ASP.NET MVC4 web application and currently working on how I can prevent the users from inserting duplicate entries in the db , when a user submits an entry and then again ...
-2
votes
1answer
63 views

Stored Cache File Name Change

<?php define('CACHE_PATH', $_SERVER["DOCUMENT_ROOT"]."/cachefiles/"); // how long to keep the cache files (hours) define('CACHE_TIME', 12); // return location and name for cache file function ...
1
vote
0answers
96 views

MVC 4 OutputCache with different client server durations

How can I have a server OutputCache Duration of 2 minutes and a browser cache expiration of 10 minutes, oh and specifically have it work in IE 8? [OutputCachce(Duration=120,VaryByParam="*"] and ...
0
votes
1answer
87 views

SQL cache dependency: Poll specific time of day

We want to improve the performance of our WCF service by introducing output caching. For each different URL (varyByParam="none" varyByCustom="RawUrl") we want to cache the result as long as the ...
0
votes
0answers
48 views

outputcache a site from console app

I want to run a consol app that calls a website on all outputcacheing pages so that all the cached paged will be cached for the user. When using the browser the page caches correctly but I want to be ...
2
votes
1answer
62 views

OutputCache - specify what to cache

Im using OutputCache attribute [OutputCache(Duration = 3600)] to cache a controller that returns a view. But the view contains a Helper Method that shows certain information depending on a Web.config ...
0
votes
0answers
43 views

HOW is stored outputCache in ASP.Net

So I know that cache is stored in the memory and has expiration date, is returned if the page is requested for the second time and so on. but how is it stored in the memory? I mean, is it a single ...
1
vote
0answers
86 views

OutputCache Client side not working as expected

I am using MVC and OutputCache attribute for client side caching. When I set OutputCache Location to Client what I expect to see is on the second and continues requests, action shouldn't be hit. ...
0
votes
1answer
101 views

Caching Vary BY Param when we have ASP.NET Routing Values instead of QueryString values

Normally we can do caching and make dependency on Request.QueryString values like <%@ OutputCache Duration="15" VaryByParam="search" %> The url for such may be like: ...
0
votes
1answer
64 views

Outputcache for two parameters, custom and Encoding

Is there a way to use ASP.NET Outputcache for page for both: VaryByContentEncoding - whether the browser support gzip or not By custom param, in my case country which I get from using ...
1
vote
0answers
36 views

Is there a way to make fragment cache dependency on object stored in session?

I have a user control and I want to cache it using: <%@ OutputCache Duration="10" VaryByParam="none" %> Now for dependency I want this cache to depend on object variable I'm storing it in ...
2
votes
1answer
85 views

Is there a method to cache Razor page in Service Stack?

I'm new to Service Stack, just discovered and looks very interesting to use. I'd like my future websites to be quite backbone heavy but still ensure they can mostly be indexed by Google and seen by ...
1
vote
1answer
93 views

Asp.Net caching specific querystring parameters, not others

I can't figure out how to cache this page under the different URL formats posted below. I would like to cache these pages: /folder/ /folder/?page=2 /folder/?id=17 /folder/?id=17&page=2 I don't ...
0
votes
0answers
28 views

How to check in a cached action, that cache OutputCache expired?

I have following code: [OutputCache(Duration = 300)] public JsonResult Json() { System.Threading.Thread.Sleep(3000); string[] arr = new string[2]; arr[0] = "a"; arr[0] = "b"; ...
0
votes
0answers
46 views

Static Content Caching with Lazy Update

We have a dynamic ASP.NET/SQL Server driven site. It is a very wide site, with lots and lots of pages. Each page individually has a relatively low volume (1-2 hits per day) but across the entire site ...
6
votes
2answers
390 views

How to set different Cache expire times for Client and Server caches

I would like to have certain pages have a 10 minute Cache for clients and 24 hours for the server. The reason is if the page changes, the client will fetch the updated version within 10 minutes, but ...
1
vote
1answer
122 views

How to cache output of action method that returns image to the view in asp.net mvc?

I've read lots of posts about caching already, but none of them actually match my needs exactly. In my mvc 3 app I have an action method GetImage() that returns a File of image type. Then I use this ...
0
votes
0answers
59 views

VaryByParam not working with parameter, only *

I've taken a look at the other VaryByParam questions, but I haven't been able to find the answer to my question. I have an MVC site that has the following action defined: [OutputCache(Duration = 30, ...
1
vote
1answer
162 views

ASP.NET MVC - caching pages on client side

I have code that is cached this way: [OutputCache(Duration="3600", Location=OutputCacheLocation.Client)] Now, I don't exactly know how this output cache works. Where exactly does it keep the copy ...
0
votes
0answers
37 views

Make a User Control or Page Cache Vary on contents of a cached Dictionary

Yesterday, I spent some time thinking about caching. Specifically, caching data. I am using ASP.NET 4.0, coding in VB. I'm using a MySQL database, so cannot use the SQL Server-only sqlDependency. ...
0
votes
1answer
320 views

Outputcache not working for JsonResult (asp.net-mvc-3)

OutputCache attribute on action that returns Json is not working - when I hit the action URL in browser many times, each time I got the breakpoint activated in VS2012 (it looks like the OutputCache ...
2
votes
2answers
262 views

Output cache is not working .net4.0

We are working on a asp.net site with .net framework 4.0. and we tried to incorporate output cache for it. But unfortunately it is not worked. Later we found removing Microsoft security update ...
0
votes
0answers
89 views

Asp.net User Control output caching loss of cached data

I have a very busy website in IIS7 asp.net V4. On the home page, several user control, cached, like this : <%@ OutputCache VaryByParam="none" VaryByCustom="CMS_LINK_CACHE" Duration="1200" %> ...
2
votes
2answers
149 views

How to clear cached after I finished saving data?

I'm just new ASP .NET, and I would like to know on how can I clear all the data entries after saving it and redirected to other page? I have tried this on my HTML page, <meta http-equiv="Pragma" ...
1
vote
1answer
85 views

Custom output cache provider

I'm creating a custom output cache provider by implementing the OutputCacheProvider class in an ASP.NET MVC application. In the below methods, public override object Add(string key, object entry, ...
0
votes
3answers
155 views

Problems with Html.Action and OutputCache

I am experiencing an issue when using Html.Action in a view to display the result of an action which has CacheControl enabled on it. Code [OutputCache(NoStore = true, Duration = 0, VaryByParam = ...
0
votes
1answer
110 views

HTTP caching WCF REST/SOAP action

I have a WCF Web Service (not Web Api) that looks like this: public interface ILogsService { [OperationContract] [WebInvoke(UriTemplate = "/Find")] [Description("-Service description-")] ...
0
votes
0answers
134 views

Custom output cache provider and HttpContext.Current.Cache

I have a shared hosting space that give me 1G space. In the other hand, it is a shared hosting and I have not more resources (such as memory). So, I decide to use a file-based output cache provider. I ...
0
votes
1answer
136 views

Custom cache not caching querystring

I'm using custom cache on a page, leaving a timestamp to follow cached versions. I have <%@ OutputCache Duration="1200" VaryByParam="None" VaryByCustom="myCache" Location="ServerAndClient" %> ...
0
votes
3answers
229 views

Invalidating OutputCache programatically on UserControl

Is there any way of invalidating OutputCache on UserControl? I've setup a partial caching on my site using UserControls and it's working fine. I've set output cache like this in my user control: ...
0
votes
0answers
108 views

MVC output cache works on development server but not on production server IIS 6

I have a asp.net MVC 4 application developed in visual studio 2010. I am using output cache for one of my controller actions, it works on visual studio development server, but when I upload it on my ...
3
votes
2answers
347 views

Why does Web outputCache config section pointing at Azure Shared Cache slow down every request?

My question is similar to this one, but my issue is with Windows Azure Shared Caching -- not the newer Windows Azure Caching. It's really a strange issue. I have a shared azure cache set up and ...
0
votes
0answers
71 views

OutputCache and postbacks

We have a content-managed solution in which all pages are based on a template which, among other things, inserts a number of site-wide directives on every page. One such directive is an OutputCache ...

1 2 3 4 5 9