Tagged Questions

0
votes
1answer
26 views

Does the output cache respect response headers?

I'm considering using the ASP.NET output cache to improve the performance of my custom HTTP handler. If I set an expiry header in the response, will the output cache be intelligent enough to cache …
0
votes
5answers
60 views

Internet Explorer (6 and higher) cache and temporary files

How to prevent browser from storing particular page in temporary files folder ? Is there any solution using meta tags ? i've tried with meta tag: pragma, expire, cache-control but it doesnt work.
0
votes
2answers
25 views

How to disable Browser Caching for a specific View in ASP.NET MVC Environment?

I want to disable Browser Caching in a specific View. I tried Response.Cache.SetCacheability(HttpCacheability.NoCache); in a controller that returns the View, but that does not work. Any …
2
votes
3answers
33 views

Output cache versus application cache?

I have an application that uses the application cache to store the responses generated but custom HTTP handlers. The same response is always returned to requests for the same URL, and the entire …
0
votes
3answers
30 views

Caching AJAX query results with prototype

I'm looking at putting together a good way of caching results of AJAX queries so that the same user doesn't have to repeat the same query on the same page twice. I've put something together using a …
0
votes
2answers
48 views

Need temporary Client-side solution for handling browser “Back” button

At this moment I cannot make changes to the code behind for a few weeks, but can change the .aspx file. We have some internal users that will click the IE7 "back" button to navigate back 5 or 6 pages …
0
votes
1answer
16 views

HTTP Cache - check with the server, always sending If-Modified-Since

I have a resource which is user generated and therefore changes at an unpredictable time (example, a user uploads a new version of a word document). I would like browsers to cache this resource and …
0
votes
1answer
36 views

What determines which local SQL Server cache tables can be cached?

I have a c# Visual Studio app. I connected to an existing SQL Server 2008 database and the Studio created a local cache (.sdf file) for me, caching all existing tables. Now I added 2 additional …
7
votes
5answers
290 views

Whats the best way to manage keys (in memcache ) to prevent stale cached values?

Ive recently implemented memcache on my site which has been under heavy mysql load (mysql was as optimized as I could make it). It solved all my load issues, and site is running beautifully. The …
2
votes
2answers
45 views

Stop images from caching in Rails and browser?

I have created a image crop facility that I can click on an image and crop it and it saves the new cropped image over the old one, then redirects back to the original page where the image was show. …
0
votes
1answer
27 views

Rails Page Caching not working and Action Caching throwing ‘Filter Chain Halted’

Hello, setup Controller -> Action Index results = Model.all (SQL Call) View Loop through and render partial from results. Call count for result row (SQL Call) Partial Manage result data …
0
votes
3answers
21 views

Advantages of ETags verses updating URL

ETags allow browsers to perform conditional GETs. Only if the resource in question has been altered will the resource have to be re-downloaded. However, the browser still has to wait for the server to …
1
vote
3answers
21 views

Passing build timestamp to code

I would like to give my CSS and javascript files far-future headers and add a token onto the URLs referrring to them. That way browsers don't have to re-download CSS and javascript unless I've …
0
votes
1answer
32 views

NHibernate: How do I ignore the cache and go directly to the database?

Consider a typical NHibernate context class. public class SampleContext : NHibernateContext { public SampleContext(ISession session) : base(session) { } public …
0
votes
1answer
26 views

HTTP Caching Testing

I have a proxying system that needs to understand the HTTP Cache-Control headers. The intent is not to perform any actual caching, but to derive tuning information based on the caching …

1 2 3 4 5 56 next
15 30 50 per page