Donut caching is a type of caching where most of the content is cached, with a little 'hole' of content that is not cached.
0
votes
0answers
14 views
Does .Net Output Caching Affect 3rd Party Ads?
I want to implement OutPut Caching on my site's homepage to improve performance. We also run 3rd party ads from doubleclick. For 1x1 impression tracking pixels, we append a random number at the end ...
0
votes
0answers
18 views
Cache clearing using MvcDonutCaching
I uses mvcdonutcaching(works very well in general) to manage site caching. I have a question though that i had some difficulty finding the answer to. I need to clear cache item for a varybycustom ...
0
votes
0answers
28 views
Unable to pass values to my ChildAction in MVCDonutCaching
I am trying to work with MvcDonutCaching library
MVCDonutCaching
I need to pass data from the parent Action to the Child Action. However, I am unable to do so. I have tried with both Html.Action ...
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
0answers
114 views
ASP.NET MVC - Donut caching and complex data types - serialization error
I have something like this:
@Html.Action("PostOptions", new { post = Model.item }, true)
Parent action is cached with donut caching, and i want this action above not to be cached. But it gives me ...
1
vote
0answers
121 views
Donut hole caching - exclude MiniProfiler.RenderIncludes
I have an ASP.NET MVC action that is decorated with the OutputCache attribute, but the problem is that the MiniProfiler output is cached as well. I'd like to exclude the MiniProfiler output from the ...
1
vote
1answer
80 views
Store pageview when page is cached using outputcache
I have a page which I cache for hours using outputcaching. However, I still want to log each pageview in my database.
It is quite important I get access to my codebehind, as I will use these data to ...
3
votes
1answer
363 views
NullReferenceException in DevTrends.MvcDonutCaching.KeyGenerator.GenerateKey
I'm having the problem described by @Aviv in this post:
http://www.devtrends.co.uk/blog/donut-output-caching-in-asp.net-mvc-3#125
I looked for the error here and on Codeplex but not found.
The ...
3
votes
1answer
378 views
MVCDonutCaching - Issues with child action when parent is not donut cached
I am using the awesom MVCDonutCaching package from Nuget in order to cache entire pages while leaving certain portions uncached. The process is simple and everything works as it should:
I am caching ...
8
votes
4answers
4k views
Is Donut caching available in ASP.NET MVC 3
ASP.NET MVC 3 (final) was released today. When this version was in its infancy I remember reading on codeplex that donut caching was being considered. Does anyone know if this made it into V3? I ...
8
votes
1answer
718 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 ...
0
votes
2answers
223 views
I need help doing a Regex.Replace with multiple results
I'm building a custom page caching utility that uses a syntax like {Substitution:GetNonCachedData} to get data that's not supposed to be cached. The solution is very similar to the built-in <@ ...
0
votes
1answer
505 views
Prevent Image Caching in MVC 2 C#
I have a profile image upload page, where users can overwrite their previous profile picture.
But when I return the users to their profile page the browser has cached their previous image and only an ...
8
votes
1answer
915 views
Turn off page-level caching in a user control
I have a page with the following caching defined:
<%@ OutputCache Duration="60" VaryByParam="None" %>
I have a user control inside that page that i don't want cached. How can I turn it off ...
4
votes
3answers
2k views
How to use ASP.Net server controls inside of Substitution control?
while the method we use in Substitution control should return strings, so how is it possible to use a donut caching in web forms on a server control which should be rendered server side?
for example ...
5
votes
2answers
4k views
ASP.NET MVC 2 disable cache for browser back button in partial views
I am using Html.RenderAction<CartController>(c => c.Show()); on my master Page to display the cart for all pages. The problem is when I add an item to the cart and then hit the browser back ...
3
votes
2answers
285 views
ASP.NET 'Donut Caching' not working
I have an ASP.NET page where I am trying to do some output caching, but ran into a problem.
My ASPX page has
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" ...
5
votes
2answers
574 views
ASP .NET - Substitution and page output (donut) caching - How to pass custom argument to HttpResponseSubstitutionCallback delegate
I would like to use substitution feature of donut caching.
public static string GetTime(HttpContext context)
{
return DateTime.Now.ToString("T");
}
...
The cached time is: <%= ...
3
votes
2answers
451 views
Is there a way to access the current session from within a substitution control?
Looks like context parameter of asp:net substitution control method is missing the current session once the page is output cached.
Aside from getting the substitution control's content thru ajax or ...
5
votes
4answers
1k views
Donut Caching Tutorials [closed]
Can someone point out a couple of good quality tutorials/pages for donut caching? Like everything else on the web, you can google a million things, but several of the articles I've found are a bit ...
5
votes
4answers
909 views
How do I 'donut cache' in ASP.NET MVC for something more than a date
All the examples for donut caching I've seen are just like this :
<%= Html.Substitute( c => DateTime.Now.ToString() )%>
Thats fine if I just want the date, but what other options are ...
10
votes
3answers
2k views
Can I use [CompressFilter] in ASP.NET MVC without breaking donut caching
I am trying to get [CompressFilter] working with donut caching and running into issues.
What happens is that the whole page gets cached and not just the donut. The source for the CompressFilter I am ...