Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
450 views

if javascript interpreter does “JIT compilation”, does it cache results of it for use on the same script next time I load the website?

to make it more specific, I mostly care about SpiderMonkey interpreter in Firefox. So suppose I want to speed up the loading of a particular website in my browser or else speed up loading of all ...
2
votes
1answer
187 views

ASP.NET MVC3, How to Use Different OutputCacheProfile to Different User Role?

I know I can setup OutputCacheProfiles at web.config file. I like to know how to apply different cache profile to different user role on page (controller) level? Thanks.
2
votes
1answer
112 views

How to setup Typo3 so client-side caching is enabled?

I have found the following page on the matter: http://typo3.org/development/articles/using-cache-control-headers-in-typo3/page/3/ But enabling config.sendCacheHeaders does not seem to give me what I ...
2
votes
5answers
103 views

Can PHP be set to never cache a response, and always send something fresh to the page?

I have a webpage which pulls in an XML news feed and I don't want the page to cache it so that the XML feed displayed is most recent. I tried this already so the cache is reset every 1800 seconds: ...
2
votes
1answer
276 views

Caching static resources on nginx and browser behaviour

I wanted to cache static resources so I set an expires header for static resources. After setting the expires header, what I notice is: Firefox and IE do not send requests to nginx for static ...
2
votes
2answers
2k views

Asking browsers to cache our images (ASP.NET/IIS)

I just ran Google's Page Speed application against our site and one of the recommendations was to Leverage browser caching. Expanding this revealed the following: The following cacheable resources ...
2
votes
3answers
490 views

Why do firefox/chrome show a different page than IE8?

When I look at this published Google Docs document, I see the latest version with Firefox and Chrome, but an older version with IE8. Also, screen-scraping it via PHP/Curl gives me an older version. ...
1
vote
1answer
87 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
1answer
249 views

Browser caching with BottlePy/GAE

I'm running Google Page Speed on my website which is in Python/Bottle on Google App Engine. It's saying: 'The following cacheable resources have a short freshness lifetime. Specify an expiration at ...
1
vote
2answers
694 views

GWT Caching Concept

Can someone explain to me in simple term the concept of caching in GWT. I have read this in many places but may be due to my limited knowledge, i'm not being able to understand it. Such as ...
1
vote
1answer
190 views

Google App Engine: localhost browser caching?

I'm developing with GAE on my own machine. It was pretty fast, until I added CSS and images, at which point the page loads much more slowly. I suspect that the browser isn't caching anything, perhaps ...
0
votes
0answers
7 views

Checking cache control max age setting in firefox

Firefox has a cool feature which allows me to check the cache. I simple type about:cache in the address bar and some useful cache information appears. This includes every file cached and its ...
0
votes
0answers
37 views

Cache Frame content

I have an application with several tabs. Each tab contains several frames. Each frame contains a form user should fulfil. The problem is, if user navigates back and forth between the different tabs, ...
0
votes
1answer
107 views

IE and Chrome caches 'no-cache' images

Hi I'm using fragment caching extensively in my rails application. I've cached fragments which have user images in them. So when a user changes his/her avatar(image), a lot of fragments have to be ...
0
votes
0answers
26 views

How to Ensure that VS2008 Debugger Refreshes MVC 2 Web Page

I am developing an application in ASP.NET MVC 2 on VS2008 SP1 (with Resharper) on Windows 7. Within the last few days, I have seen a situation where the proper contents of the MVC views are not being ...