Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

117
votes
18answers
2k views

Cached, PHP generated Thumbnails load slow: How to find problem/solution from Waterfall graphs?

Question Part A ▉ (100 bountys, awarded) Main question was how to make this site, load faster. First we needed to read these waterfalls. Thanks all for your suggestions on the waterfall readout ...
15
votes
3answers
201 views

How can caches be defeated?

I have this question on my assignment this week, and I don't understand how the caches can be defeated, or how I can show it with an assembly program.. Can someone point me in the right direction? ...
13
votes
1answer
716 views

Why is Django Caching my static with django.views.static.serve?

I have static.serve setup on my local development server, but it seems to cache static files (in my case, css, javascript and images) until I restart the the server. I am not using apache, and I have ...
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 ...
5
votes
0answers
115 views

mod_expires sending Cache-Control headers for 3## status codes

Apache is sending Cache-Control headers for 3## status codes, like 302 redirects. This is causing Firefox (possibly starting with Firefox 5) to cache the 302 redirects--which results in an infinite ...
5
votes
1answer
121 views

asp.net cache within httpcontext

I want to cache objects being pulled from a database that do not often get modified, because every time the page loads nearly 2000 items are selected, causing a noticable performance issue during page ...
5
votes
1answer
110 views

Associative cache simulation - Dealing with a Faulty Scheme

While working on simulating a fully associative cache (in MIPS assembly), a couple of questions came to mind based on some information read online; According to some notes from the University of ...
4
votes
1answer
216 views

What's the difference Expires and Cache-control:max-age?

Could you tell me the difference of Expires and Cache-control:max-age?
4
votes
6answers
886 views

How to make Microsoft XmlHttpRequest honor cache control directive

i'm issuing a request using MSXML's XmlHttpRequest object: IXMLHttpRequest http = new XmlHttpRequest(); http.open("GET", "http://www.bankofcanada.ca/stat/fx-xml.xml", False, "", ""); http.send(); ...
4
votes
2answers
1k views

How to disable the Android browser cache permanently?

I'm developing a web based application that also should run on Android based phones. As I don't have one I'm successfully using the emulator from the SDK. But as I'm constantly changing some ...
4
votes
3answers
832 views

Make IE to cache resources but always revalidate

The cache control header "no-cache, must-revalidate, private" allows browsers to cache the resource but forces a revalidate with conditional requests. This works as expected in FF, Safari, and Chrome. ...
4
votes
2answers
3k views

HTTP Cache Control max-age, must-revalidate

I have a couple of queries related to Cache-Control. If I specify Cache-Control "max-age=3600, must-revalidate" for a static html/js/images/css file, with Last Modified Header defined in HTTP ...
3
votes
2answers
122 views

HTTP caching in WCF Web API seems inconsistent across browsers

I'm implementing a simple REST service with the WCF Web API and attempt to set HTTP headers in order to cache responses. For a simple GET like this http://localhost:49302/my/2 the response headers ...
3
votes
3answers
101 views

C++ Cache friendly way of accessing all the members of all elements of a `vector <struct_type>`

I'm interested in optimizing my code for multithreaded computing. In terms of the cache, pipelining, or any other aspects of memory access, how do the following compare for conserving those resources: ...
3
votes
1answer
749 views

Hack IE 8 back button / force resend?

When I go back with IE 8 I get the error "Webpage has expired Most likely cause: •The local copy of this webpage is out of date, and the website requires that you download it again. ...
3
votes
0answers
319 views

Cache-control in Tomcat

We have run into a problem with Internet Explorer where it is unable to handle the Cache-control header set to no-store for SSL downloads. See http://support.microsoft.com/kb/323308 for more details. ...
3
votes
1answer
219 views

Asynchronous cache expiration with rails

My application use a "conventional" cache sweeper (subclass of ActionController::Caching::Sweeper) to expire the cache (essentially fragments). Now, the cache expiration locks the application for ...
3
votes
1answer
206 views

ActionScript / AIR - Determine Device Profile At Runtime?

i'm developing an application for both desktop and mobile devices and would like to use the same code base for each build. i want to employ cacheAsBitmapMatrix on some of my display objects, but ...
3
votes
2answers
366 views

How to generate asset IDs in Rails 3 to control cache?

In Rails, when serving static files, you get an asset ID that's appended to the URL, e.g., <script src="/javascripts/application.js?1300371955" ... <link ...
3
votes
2answers
351 views

Cache Busting images inside CSS

My situation I am currently using Cache Busting when I include CSS files like this: echo "&lt;link href='stylesheet.css?" . filemtime('stylesheet.css') . "' />" My goal Now I would like to do ...
3
votes
3answers
1k views

Cache-Control headers repeated; valid or not? (Nginx)

I've got a resource in my Nginx that is configured like this: location ~ foo\.js$ { add_header Cache-Control public; expires 1d; } If I open this with Firebug and look at the headers it ...
3
votes
2answers
461 views

How to architect a web service cache in c#

I'm working on a web service to read data from a 3rd party feed, modify it a little and store it, then return it to my clients. It only needs to update from the 3rd party site periodically. It will be ...
3
votes
2answers
4k views

Add an Expires or a Cache-Control Header in JSP

How do you add an Expires or a Cache-Control Header in JSP. I want to add a far-future expiration date in an include page for my static components such as images, css and .js files. Any help is ...
3
votes
3answers
603 views

Browser Cache Control, Dynamic Content

Problem: I can't seem to get FireFox to cache images sent from a dynamic server Setup: Static Apache Server with reverse proxy to a dynamic server (mod_perl2) at backend. Here is the request URL for ...
3
votes
5answers
240 views

What's the best way to learn about HTTP, the TCP stack, and cache-control headers?

Recently I read a software engineer job description. The requirements included knowing how the web works from HTTP to HTML, improving the performance of the TCP stack in Linux, and knowing how ...
2
votes
1answer
36 views

setup Cloudfront to never refetch assets

I have a Rails app that uses Cloudfront as its CDN and sprockets to compress assets and set long Cache-Control headers. First request to an assets gives me response headers like so: ...
2
votes
1answer
50 views

Java Web Start - How to clear cache (or update the app from user's perspective)

After the JNLP gets downloaded in the browser it becomes cached so it doesn't need to be downloaded again, which is good. However, as a consequence, if I update the JAR that the JNLP uses, users will ...
2
votes
1answer
71 views

Design a cache management API

I'm working on a content exchanging library that requires some cache management. For example, user can publish data with ContentPtr *publish(char *data, ssize_t length); ContentPtr *publish(FILE ...
2
votes
1answer
205 views

Mathematica running out of memory when fitting parameters of system of differential equations

I encountered a memory problem in Mathematica when I tried to process my experimental data. I'm using Mathematica to find the optimal parameters for a system of three partial differential equations. ...
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
52 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
45 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
91 views

Expires vs max-age, which one takes priority if both are declared in a HTTP response?

If a HTTP response that returns both Expires and max-age indications which one is used? Cache-Control: max-age=3600 Expires: Tue, 15 May 2008 07:19:00 GMT Considering that each one refers to a ...
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
148 views

How do I create a “clear cache” button for my site?

I'd like to create a button on my site that COMPLETELY clears my cache. As neither Safari's nor Chrome's features work at all it seems. Is this possible?
2
votes
4answers
353 views

HTML - Cache control max age

I'ld like to present always the latest website content to the user but also have it fast loaded. By researching I came across postings people suggesting to use the cache for speeding up loading. So ...
2
votes
2answers
148 views

Zend Framework : Zend_Cache_Frontend_Page not caching when using get parameters

I am using a code snippet to cache an entire page : <?php // Cache engine // Cache everything outputed on the page for 2 minutes // in the tmp folder require_once 'Zend/Cache.php'; ...
2
votes
1answer
278 views

what’s the difference between Expires and Cache-Control headers?

what’s the difference between Expires and Cache-Control header? I am getting confused of both..
2
votes
2answers
209 views

Web Page ALWAYS Expired, IE7, (?)Proxy Cache

I'm working in PHP 5.3, on Apache. A couple of (important) people have reported that the "details" page of the site does not load for them in IE7, instead ALWAYS delivering a "Webpage has expired" ...
2
votes
2answers
95 views

Is there a way to completely remove an inode when the Link count is 2?

Currently my data is organised in a volume which has a cache directory (where all the files are first created or transferred). After that there are suitable directories on the volume which in their ...
2
votes
2answers
444 views

How to make an FPDF's generated pdf non cacheable?

I'm checking an app written in raw php, without any framework. In a module there are reports generated with FPDF and working fine, except that the pdfs gets cached. The original invocation of the ...
2
votes
5answers
2k views

Drupal: How to Rebuild Menu Navigation

In Drupal 7.0, when I change a routing path/menu from the type MENU_NORMAL_ITEM to the type MENU_CALLBACK, Drupal 7.0 does not remove the item from the menu_links table. I'm not sure if this is a bug ...
2
votes
2answers
1k views

How do you disable caching with WebClient and Windows Phone 7

I am making a call to a REST web service and the mobile app is retrieving the results from its cache and not going to the server. I have seen other suggested fixes (similar issue and similar issue2) ...
2
votes
2answers
450 views

Understand If-Modified-Since HTTP Header

I am looking at a Caching library that is trying to use the "If-Modified-Since" header of a request object. The problem is this header never gets set, it is always blank which makes sense to me seeing ...
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
578 views

Looking for a C# cache manager [closed]

I'm searching for a good cache manager for generic objects. I'm using C# with ASP.NET. I want to use System.Web.Cache. So I want a cache manager that will care about the caching and implement ...
2
votes
1answer
1k views

setting no cache for different parts of spring mvc 3 using WebContentInterceptor?

Hi there I have developed a dynamic web application that uses Ajax to fetch data from databases and keep the GUI up to date but while testing it with IE8 I am experiencing caching issues. I used the ...
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 ...

1 2 3 4 5