Eliminate the need to send HTTP requests in many cases, and eliminate the need to send full HTTP responses in other cases, by storing web content closer to where it is consumed.

learn more… | top users | synonyms

0
votes
0answers
11 views

Making sure HTML5 media is not cached, across all browsers

So my web servers have the ability to stream media (audio in this example) to browsers. Browsers use HTML5 controls to play the media. What I'm discovering, however, is that Firefox is caching the ...
0
votes
1answer
27 views

What are the drawbacks of using cache-control: no-store?

We want to "prevent the inadvertent release or retention of sensitive information (for example, on backup tapes :) )" and plan to use the HTTP header Cache-control: no-store. What are the down-sides ...
1
vote
0answers
23 views

Symfony2 SetSharedMaxAge HTTP caching

This is what i have: public function indexAction() { $response=new Response(); $response= $this->render('RatingBundle:Default:index.html.twig'); $response->setPublic(true); ...
1
vote
0answers
32 views

Can't get Firefox to stop caching

There are lots of question and answers about preventing the browser from caching and I've tried lots of them. It seems like Cache-Control: no-cache,no-store along with Pragma: no-cache and Expires: 0 ...
1
vote
1answer
31 views

Can I force GAE to set cache headers for CSS files?

On GAE python 2.7 I have a single folder where I serve my CSS and JS files. The handler in my app.yaml looks like this: - url: /scripts static_dir: scripts expiration: '30d' Some of the JS ...
1
vote
0answers
23 views

Page over http gets cached while over https it doesn't

I have a webapplication. The bootstrap page shouldn't be cached but chrome always gets the page from cache, while it doesn't show that behaviour over https, where it works correctly. My headers are ...
0
votes
1answer
35 views

Is there any evidence that browsers ignore Cache-Control and Max-Age headers?

I've heard it suggested by several different sources that browsers sometimes ignore caching headers and instead use stale content. However, I've never actually observed this. Is it true that ...
0
votes
2answers
87 views

Poco c++Net: Http get headers from response

Im using POCO C++ Net libraries for http I want to try make a strategy for persistent caching: First of all i think i need to get expires from the cache headers and cross check with cached values ...
0
votes
0answers
24 views

How Parsley PropertiesFile can be reloded, avoiding the cached version is loaded?

In an old Flex 4.1 project I'm using Parsley 2.3.0 and it is configured by a PropertiesFile tag in my main mxml file, as follow: <parsley:ContextBuilder> <parsley:PropertiesFile ...
2
votes
1answer
79 views

C++ Networking library supporting response caching

Hi im writing a mobile application client featuring web-requests, through POCO C++ Net-library. However for performance reasons im in need of caching the http responses( response caching to disk). I ...
2
votes
1answer
68 views

C++ Library with http 1.1 response caching support

I am working on a project where I need to communicate with a server using a network library in C++. Currently im using POCO/Net Is there any C++ library that has support for response caching, ...
1
vote
1answer
43 views

Best way of dealing with cached js files when iterating rapidly

My application is growing, changing, and deploying to our alpha users several at least once a day. This leads to a problem as users' browsers caches doesn't expire rapidly enough for them to get the ...
0
votes
0answers
23 views

Does symfony2 supports http caching for responses returned via the forward() method?

When I get the fancyAction response using a route, the response is cached, but when I use the forward method it is not. How can i get a cached response using the forward method without using third ...
1
vote
2answers
44 views

Is HttpApplicationState.RemoveAll() thread safe?

In my asp.net application, i want to cache some data in the HttpApplicationState. My code to set the data looks like this: Application.Lock(); Application.Set("Name", "Value"); ...
0
votes
1answer
62 views

Why SOAP can't use HTTP caching mechanisms

I am making a transition from SOAP to REST, and I would like to convince my colleagues that this is a good move. We don't need the extra security mechanisms that SOAP can provide. For us the overhead ...
2
votes
1answer
52 views

How do I invalidate HTTP cache with the Location header?

On cache invalidation, the HTTP spec says: Some HTTP methods MUST cause a cache to invalidate an entity. This is either the entity referred to by the Request-URI, or by the Location or ...
3
votes
1answer
57 views

How to understand “semantically transparent” of RFC2616 in “Cache-Control machanism” section?

1.Definition of “semantically transparent” from sec "1.3 Terminology" of RFC2616 semantically transparent A cache behaves in a "semantically transparent" manner, with respect to a particular ...
0
votes
1answer
309 views

Working with HTTP cache in Laravel, static files path generation

I'm planning to use Laravel framework in my next project. By now i get stuck in organizing links to static content in my project (images, scripts etc.) For example, i have this cache option (do cache ...
0
votes
1answer
210 views

iOS 6.1.2 forever caching redirect content

Hi everyone, I've got a tough one here ... I've got (actually my employer has) a mobile website that enables Safari integration (for iPhones and iPads) - meaning that customers can bookmark it to ...
0
votes
1answer
53 views

How to simulate a call to HttpContext.Cache[“MyKey”] with Rhino Mocks?

Short version: How to get Rhino Mocks to simulate a call to HttpContext.Cache["MyKey"] and return expected data? Long version: I need to simulate a return value from the HttpContext.Cache with ...
1
vote
1answer
118 views

Preventing JSP from caching [duplicate]

<% response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache"); response.setDateHeader ("Expires", -1); %> <%@ page language="java" ...
2
votes
0answers
81 views

Is it possible to use both S3 Query String Authentication and HTTP caching?

I have the following requirements for a (Rails) web application that uses S3/Cloudfront for image storage: A user may only see an image if they are logged in. If the user sends an image URL to a ...
0
votes
1answer
106 views

HttpRuntime.Cache in global.asax is always empty

I have a series of cached objects cached in this way HttpRuntime.Cache.Insert(....) I am trying to use a varyByCustom declaration for a user control, and using this cached object to return a value ...
0
votes
1answer
86 views

Google Maps Ground Overlay not caching Django served dynamic image

I've set up a google maps overlay (v 3.10) in javascript to display an image generated on the server: var overlay = new google.maps.GroundOverlay(url, MAP_BOUNDS, {map: gmap}); When url points to a ...
1
vote
0answers
38 views

WCF JSONP Conditional Caching

Using a cross-domain WCF service, i cannot seem to get conditional caching with JSONP responses. When the request's If-None-Match value matches the Etag, i expect a response with a status code of ...
0
votes
2answers
70 views

How to disable http cache in the entire site?

I need to be able to put the site in 'maintenance mode'. So I'm using a cheap hack like this one in app.php (the original app.php was moved to app.php.bak): <?php $key = 123; ...
0
votes
1answer
447 views

Expires header based on dynamic Content-Type in nginx

I have a PHP website where some content is user-generated. For example, users can upload photos that get resized and can be requested. I'd like to specify an Expires header (for caching) based on the ...
1
vote
0answers
98 views

Chrome refusing to cache localhost

I am writing a server which detects If-Modified-Since header values and responds with 304 as appropriate. The problem is, I can't get Chrome to send an If-Modified-Since header without resorting to ...
1
vote
1answer
91 views

Cache on HTTPHandlers URLS

I am building a AJAX based prettyphoto gallery in ASP.NET. What I do is displaying a set of thumbnail, while clicking each thumbnail I post a AJAX request and according to the thumbnail I get some ...
3
votes
2answers
77 views

PHP generated image preloading

i have a avatar loading animation, which is getting swapped for the image when it is loaded : var avvy = $.trim("/"+this.mycoach.avatar); this.tmpImg = new Image() ; this.tmpImg.src = avvy; ...
1
vote
1answer
84 views

GET request with “If-Match” and ETags

I'm working on implmenenting ETag functionality for a RESTful service, and I'd like to be as close to the HTTP spec as possible. The spec however is not as clear as it probably should be. ...
0
votes
1answer
54 views

Approach to cache with Zend Framework

I am using a webservice for hotel reservations. The data in webservice changes constantly because the reservations are made in real time. Would you like some approach to cache using the Zend ...
0
votes
0answers
23 views

HTTP mechanism for cache expiration callback

I am working on a system where html fragments are taken from another site under my control and embedded into the page, server side, and http caching is used to expire the content currently. I would ...
0
votes
1answer
54 views

Caching anonymous page with redirect if user is authenticated

I would like to use page caching for our asp.net mvc site's landing page. This page is accessible to anonymous users only. If the user is logged in however, I would like this page to redirect to the ...
3
votes
2answers
289 views

HttpCache vs Singleton - Best practice for an MVC application

I am little bit confused in understanding of the HttpCache and Singleton approaches. My application uses Asp.net MVC and the scenario is that, I have some List of Data that will never change and some ...
0
votes
1answer
99 views

Handle ActionResults as cachable, “static content” in ASP.NET MVC (4)

I have a couple of ActionMethods that returns content from the database that is not changing very often (eg.: a polygon list of available ZIP-Areas, returned as json; changes twice per year). I know, ...
0
votes
1answer
384 views

Why the beresp.ttl is set to 0 when a Cookie is added to the request in Varnish?

Ok, so I'm trying to make Varnish works properly and I've a weird behavior I can't explain (may be due by a lack of understanding). Here is what I'm trying to do: GET http://scm.dev:6081/articles ...
2
votes
2answers
272 views

Caching an HTTP_POST jQuery Ajax Request Result with C# WebMethod

Here's something I can't figure out. I've got the large JSON data set that I'd like the client to cache in browser. I'm using jquery AJAX to call a c# web method. [System.Web.Services.WebMethod] ...
1
vote
1answer
275 views

How can I tell if nginx is caching responses with (shared) max age, public?

Is it possible to know whether the response I got, is new (I'm the first who made that request) or came out from the cache (someone else, or me, has already made that request and the cache is fresh). ...
3
votes
2answers
65 views

Is jQuery cache disabling trick needed if a server returns cache prevention headers?

I need to fully prevent caching of Ajax calls results. Jquery ajax() function has acache: false option for this. The option appends timestamp to each requested resource (?_=1353592676117). This should ...
1
vote
1answer
247 views

Force TinyMCE to reload plugin

I'm developing a TinyMCE plugin, however the changes I'm making to the plugin do not get loaded into TinyMCE after the first time it's loaded (It's getting cached). This is happening on both FF and ...
1
vote
1answer
477 views

Heroku production setting Cache-Control differently from local production

I have an app running on heroku at http://chesseng.herokuapp.com/ when I visit the page with chrome and its caching disabled I get a response header for application-fingerprint.css that is something ...
1
vote
2answers
440 views

HTTP caching with pjax (jquery-pjax)

Browsers and proxy caches use the URL as a cache key. In pjax the URL is used to request both the partial Pjax page and a full page, therefor both responses will be cached under the same key. This ...
4
votes
1answer
236 views

If-Modified-Since overrides If-None-Match in the browser

I have a web server which provides an ETag for a particular url. When the browser performs a request for this url, it provides the http-header "If-None-Match" with the ETag-value contained in the ...
5
votes
1answer
1k views

Cache-Control: 'private' makes 'no-cache=“set-cookie”' unnecessary?

My reading of the definition of the 'private' directive for the Cache-Control header is that it will prevent any part of the response from being cached by intermediate proxies. So based on that, it ...
0
votes
0answers
184 views

Using system.httpruntime for cahing on class library

I have Demo.Business-(Class Library) | DemoData.cs Which has the following methods. public static IEnumerable<Employee> GetCachedEmployeesData() { IEnumerable<Employee> lstEmployee; ...
0
votes
1answer
498 views

Setting both Expires and Cache-Control: max-age

Can someone clarify this statement about caching. https://developers.google.com/speed/docs/best-practices/caching says It is redundant to specify both Expires and Cache-Control: max-age, or to ...
0
votes
1answer
93 views

Smart Caching pages with no change in ASP.NET MVC

I am thinking about implementing caching mechanics for asp.net mvc pages that gives you the latest version of a web page, but if the page didn't changed since the last time it was cached, it will ...
2
votes
1answer
65 views

Why aren't my HTTP caching headers working?

I recently added some HTTP caching headers to some of my web service's responses, but they so far haven't done anything for me on the client side. Here's one of these responses: HTTP/1.1 200 OK ...
0
votes
0answers
77 views

Does cache invalidation via the Content-Location header have a transitive effect?

I've got an HTTP resource. Let's call it A. I've got another (read-only) HTTP resource whose contents are a subset of the contents A that I'll call A(b). The HTTP response for a GET of A(b) includes ...

1 2 3 4