Tagged Questions
9
votes
1answer
253 views
Why is PHP discriminating between .php and .abc extensions for caching?
There seems to be a problem between how PHP engine handles identical files that differ only in their file extension.
Problem: "An If-Modified-Since conditional request returned the full content ...
6
votes
5answers
302 views
How much memory should a caching system use on Windows?
I'm developing a client/server application where the server holds large pieces of data such as big images or video files which are requested by the client and I need to create an in-memory client ...
2
votes
2answers
60 views
using HTTP headers for cache control in PHP
How can I use HTTP headers to control when my cache should be updated?
At the moment I am using cURL to grab a live XML feed and then save it into an xml file.
The feed also sends HTTP headers ...
2
votes
1answer
51 views
Using GlobalFilters to cache invalidation is a good idea?
I am using ASP.NET MVC and EF.
To do cache invalidation I override the SaveChanges method and every time that SaveChanges is called, I update a field in database to flag that something changed.(I am ...
2
votes
2answers
56 views
Prevent cache when testing file copy speed in .NET (C#)
I'm trying to do some tests of copying speed on our WAN. As I'd somewhat suspected, using the File.Copy(source, dest) .NET function seems to get faster on the 2nd and subsequent run. I suspect ...
2
votes
1answer
44 views
setcookie and redirect loads page from cache
I have a page that sets a cookie and then redirects the user to the same page:
setcookie('name', $value, time() + $time, '/', '.domain.com');
header("Refresh: 0; url={$to}");
The problem is that ...
2
votes
1answer
29 views
Possible way to detect if an action is being cached in Rails?
Using Rails 3, is it possible to detect to see inside of the layout or a before_filter to see if an action is going to be cached and if there is a cache hit for that action?
caches_index :something, ...
2
votes
3answers
1k views
How do I use beaker caching in Pyramid?
I have the following in my ini file:
cache.regions = default_term, second, short_term, long_term
cache.type = memory
cache.second.expire = 1
cache.short_term.expire = 60
cache.default_term.expire = ...
2
votes
2answers
453 views
How to make Firefox, NOT cache my webpage
I have this page, let's call it
index.php
index.php has a list of users and a remove user button. That will take them to removeUser.php
And the last line of removeUser.php is to go back to ...
2
votes
1answer
307 views
Help create a unit test for test response header, specifically Cache-Control, in determining if caching has been disable or not
Scenario:
I have a base controller which disables caching within the OnActionExecuting override.
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
...
1
vote
2answers
77 views
details of MESI protocol for multicore processors
The details of the MESI protocol for multicore processors would be really important for me, but I can't find them anywhere. Even ...
1
vote
4answers
139 views
Is there a Java library to cache files?
Is there are java library that will cache files to memory and disk? Basically, I would like the library to cache the file to memory. However, if the in memory cache gets larger than a certain ...
1
vote
0answers
144 views
Trying To “Cookie-Free” A Sub-domain Using .htaccess, But Doesn't Work
Yes, I have searched a lot, here and there, and this is the closest I've found that I thought could actually work. But it doesn't.
<IfModule mod_headers.c>
<FilesMatch ...
1
vote
1answer
60 views
Setting Cache Expiry Period To Months or Years for static files (images etc), Necessary?
1. I am setting cache expiry period for images on my server using some .htaccess code. The thing is, when I checked the cache-expiry period of images on some popular websites, it's mostly between ...
1
vote
2answers
57 views
Client side caching using Apache 2
I have a script that is consumming too much resource to provide data that could be retrieved only each minute. Is there a way to configure Apache 2 through an .htaccess file to specify headers telling ...
1
vote
1answer
306 views
Cache-Control Headers and Heroku Dynamic Images
I'm trying to understand HTTP Caching on Heroku. After reading their article, I'm curious about how the Cache-Control HTTP header is working.
In the sample application mentioned in the article the ...
1
vote
2answers
287 views
Cache control and expires header for PHP
I'm setting my headers
$offset = 60 * 15;
header("Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT");
header("Cache-Control: max-age=$offset, must-revalidate");
However when ...
1
vote
0answers
142 views
SIte shows old pages in cache - I've reset htaccess to disable caching but it doesn't work
I'm in a pickle here. I tried to set up caching using htaccess files. I made the mistake of setting the htaccess to maintain a cache of html and text files as well. The result was that since the site ...
1
vote
1answer
76 views
Force Browser Caching Across Browser Sessions
I help maintain several Wordpress-based websites that publish news and reference information.
We have been working hard to make pages at the websites load as fast as possible.
One of the things ...
1
vote
5answers
523 views
Most Efficient Way Of Clearing Cache Using ASP.NET
I am building an ASP.NET/Umbraco powered website which is very custom data driven via entity framework, we are having to cache quite a lot of the data queries (For example searches by keyword) as ...
1
vote
2answers
243 views
How to enable the Rails cache for a single cucumber scenario
I've written a cron job to update some cached values in the background (rather than doing it while a user waits). I have a scenario that runs that cron job and then reads the cache to see if the ...
1
vote
2answers
267 views
No expires header sent, content cached, how long until browser makes conditional GET request?
Assume browser default settings, and content is sent without expires headers.
user visits website, browser caches images etc.
user does not close browser, or refresh page.
user continues to surf ...
1
vote
1answer
244 views
ROR + MVC Disable Browser Cache
I am looking for method to disable Browser Cache for entire Ruby On Rails MVC Website
I found following method,
Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
...
1
vote
1answer
247 views
ExpiresDefault: difference between Access and Modificaion?
I have been trying to decode the actual, benefitial differences between the Access and Modification, when setting Cache control in Apache's .htaccess, when to use which, but find the Apache ...
1
vote
1answer
348 views
When do cached static files expire if not specified?
In IIS6, I notice that when "Enable content expiration" is not enabled, no cache-related or expiration headers are sent with the response. Yet static content, such as css files are properly returning ...
1
vote
1answer
2k views
How to configure cache for static resources in web.xml for Jetty?
I was reading this:
http://docs.codehaus.org/display/JETTY/LastModifiedCacheControl
It says "The Jetty default servlet allows the cache control header to
be set for static content by using the ...
0
votes
0answers
14 views
Ruby gem for working memcached-tag and/or gem providing this functionality using redis/memcached
In my rails app, I want to make some cache dependent on tags: for example, main page depends on products, page for user X for product Y depends both on user X and user Y tags, category page depends ...
0
votes
0answers
49 views
Google Chrome Developer Toolbar says an image doesn't have a cache expiration, but it seems like it does
An example, Google's own logo If you go to either www.google.com or the [URL of the image
and run a page audit using the Developer Toolbar, you'll get a message to take advantage of browser caching, ...
0
votes
1answer
84 views
HTTP Caching: Why use ETag instead of Cache-Control and/or Expires?
I had been reading about HTTP browser caching and playing around with it on my own site when I noticed that jQuery's Media Temple ProCDN backed library: http://code.jquery.com/jquery-1.7.1.min.js ...
0
votes
3answers
49 views
Caching a page to multiple files or a single file
I'm developing a wiki-like web app and each page has 5, individually-editable content parts to it.
I have a simple caching class that saves the rendered parts to a file.
If a part of the page has ...
0
votes
1answer
53 views
Using cURL and HTTP headers to cache an XML feed correctly with PHP
I am using cURL to get an XML feed and save it into an XML file, like so
if (file_exists($filename) && (filemtime($filename) > time() - 30)) {
// load cached XML from file
$output ...
0
votes
2answers
66 views
Maintaining cache control property on a file when it is returned as Stream from VirtualPathProvider
I have implemented a VirtualPathProvider to return Theme files (images,css) for an Azure web site from the Azure CDN. It is working fine apart from one thing: the files that are coming from the CDN ...
0
votes
1answer
81 views
How does a cache miss EXACTLY occur?
I'm trying to understand how exactly a cache miss occurs. So far this is the way I understand it:
CPU requests for address x, searches its own (L1/L2) cache for it. If it is not there then it's a ...
0
votes
1answer
74 views
Firefox max-age based cache expiration behaving weirdly
Im working on a virtual globe web application which serves a lot of map tiles, and i am trying to tweak the http headers that my server is sending to indicate the browser (Firefox) an expiration time ...
0
votes
0answers
56 views
Preventing an image from being cached when browser back/forward button is clicked
I noticed that Google analytics utm.gif, a tracking pixel, is always requested by the browser even if the back/forward buttons are used. The response headers look like:
Cache-Control:private, ...
0
votes
1answer
153 views
Leveraging Browser Caching - Expires/Cache control for CSS/Images
After running a google Speed Test, one of the items is to "Leverage Browser Caching".
How do you set these values for static images or css files? This site uses CodeIgniter (php) and apache.
Thank ...
0
votes
1answer
66 views
Cache-manifest: while offline, replace all pages with a single “You are offline” page?
I'm trying to work out if something is possible with cache-manifest.
I have a mobile web app with about 5 pages. They all require connection to work in a meaningful way.
I'd like to handle ...
0
votes
0answers
81 views
Hash based cache busting for Rails 3.0
Is there a way to either use or get something like the new rails 3.1 hash/filename based cache busting in a rails 3.0 application?
0
votes
1answer
115 views
Max value for cache control header in HTTP
I'm using Amazon S3 to serve static assets for my website. I want to have browsers cache these assets for as long as possible. What meta-data headers should I include with my assets
Cache-Control: ...
0
votes
1answer
41 views
Ensure responses are not cached
I have a particular HTTP response which I don't want cached because it has private/sensitive data in it
I'm already setting Cache-Control to no-store,
which should handle clients supporting ...
0
votes
1answer
122 views
Does cache-control:private without expiration data imply “expire immediately”?
Most content I've observed being served from ASP.NET has only a Cache-Control: private header, with no Last-Modified or Etag header.
I've also observed that browsers never seem to cache this content, ...
0
votes
1answer
65 views
Cache file mapped by url in the browser
I have a method mapped in a url like /foo/*/image which downloads an image, and I want the browser to cache that picture. But I'm not getting it. I can see in Firefox with firebug that the request is ...
0
votes
1answer
239 views
Get Asp.net/iis to set Cache-control:max-age for static files
We have a Webforms project with url routing. I have defined exception routes for images and css-files as
routes.Add("IgnoreImages", new Route("img/{*pathInfo}", new StopRoutingHandler()));
...
0
votes
1answer
231 views
How to prevent .kml files from being cached on an IIS7 server?
Right now the .kml files that I use for a Google Maps implementation on my site are being cached for 7 days because the Cache-Control header within IIS7 is set to 7 days (as per these instructions).
...
0
votes
4answers
281 views
Wicket: proper caching of CSS resources
We just moved from GWT to Wicket 1.4. While very happy in general, we still have a bit of a learning curve for certain things that GWT made simple. One of those things is resource caching.
How can I ...
0
votes
1answer
175 views
CakePHP caching user specific query data, best practice
I would like to employ caching at model level in the current web application I am working on.
I am comfortable with caching general things, like "latest news" or other non-user specific things like ...
0
votes
1answer
59 views
How to deal with assets caching when our app ships as a widget?
Part of the application we are developing is about to be provided to the third-party websites as a widget with a simple code like:
<script src="ourdomain/script.js" ...
0
votes
1answer
157 views
.htacces cache control for AJAX requests
I have a page on my website that makes AJAX GET requests when a user clicks a button, for example the url to be gotten will look like:
/php/getData.php?field1=val1&field2=val2
The value ...
0
votes
1answer
95 views
Having trouble getting browsers to cache content
Sorry that this appears to be very similar to a number of other questions, but I have looked at all related posts I can see, but they don't seem to have quite the same issue as I do ;-)
The problem ...
0
votes
0answers
27 views
Is it okay to sometimes send public caching headers, and sometimes not, for the same url?
I want to publicly cache a lot of my pages, but sometimes cookies will be sent with the pages (session id, etc). I was planning on having a servlet filter to handle the caching, and it would check the ...