Tagged Questions

11
votes
7answers
2k views

How do I remove eTag headers from IIS7?

Per Yahoo's best practices for high performance web sites, I'd like to remove Etags from my headers (I'm manually managing all my caching and have no need for Etags... and when/if I need to scale to a …
8
votes
6answers
666 views

What’s the best way to create an etag?

What's a good method of programatically generating etag for web pages, and is this practice recommended? Some sites recommend turning etags off, others recommend producing them manually, and some …
7
votes
1answer
429 views

How do I support ETags in ASP.NET MVC?

How do I support ETags in ASP.NET MVC?
5
votes
2answers
226 views

What takes precedence: the ETag or Last-Modified HTTP header?

For two subsequent requests, which of the following two headers is given more weight by browsers should one of them change: ETag or Last-Modified?
5
votes
4answers
822 views

HTTP: Generating ETag Header

How do I generate an ETag HTTP header for a resource file?
4
votes
4answers
60 views

What is the point of If-Unmodified-Since/If-Modified-Since? Aren’t they superseded by ETags?

There seem to be two distinct ways to implement conditional requests using HTTP headers, both of which can be used for caching, range requests, concurrency control etc...: If-Unmodified-Since and …
4
votes
3answers
706 views

Rails - etags vs. page caching (file cache)

What would be some advantages of using etags/stale?/fresh_when? instead of page caching (on a file cache)? Apache automatically handles etags for static files, but even if it didn't, page caching …
3
votes
1answer
123 views

What is the purpose of (Apache) putting inode into an ETag?

There are plenty of articles on the web detailing why you might not want to use Apache's default inode-mtime-size format for ETags. But I have yet to read anything on what might have motivated the …
3
votes
4answers
877 views

.htaccess not working - only caching images and not JS or CSS [closed]

Duplicate: Why isn’t my javascript & css caching ? I'm noticing that I'm only receiving 304 HTTP codes (cached content) for images but not JavaScript or CSS. My .htaccess file is: Options …
3
votes
1answer
200 views

Rails' stale? method for sitemap always returns HTTP 200

My Ruby on Rails application uses the following controller code to generate a sitemap.xml file: class SitemapController < ApplicationController layout nil def index …
2
votes
1answer
28 views

is this true? “Gzipped items will not have the same etags (even if the content did not change)”

Is it true that we should disable etags if we are compressing with apache because the etags will be different each time? Is it true for deflate too? Thanks
2
votes
1answer
26 views

Should HTTP ETags be case sensitive?

I'm creating a library for handling client caching over HTTP on a web server (i.e., handling of If-Match, If-Modified-Since, If-None-Match, and If-Unmodified-Since HTTP headers), and I'm working on …
2
votes
2answers
297 views

Should HTTP 304 Not Modified-responses contain cache-control headers ?

Hi. I've tried to understand this, and searched SO for similar questions, but I still don't have a 100% understanding on how this is supposed to work. I get this response on a request for an image …
2
votes
3answers
202 views

How to show function prototype in Emacs?

While in C-mode I can jump to a function using M-. on the function name....is there a way i can simply display the function prototype? (preferably as a tooltip or so) I often struggle to remember the …
2
votes
3answers
1k views

Why isn’t my javascript & css caching ?

It's appears ONLY javascript and css are not caching ... but images are caching. I am using Firebug and when I refresh the page, I notice in Firebug a lot of 200 HTTP responses for js/css but am …
1
vote
2answers
44 views

Ruby on Rails, how to disable/turn off ETag

Greetings, How do I turn off ETag(s) in Ruby on Rails v2.3.5 When I do a direct request to to the RoR/Mongrel an ETag header is present. TIA, -daniel
1
vote
1answer
36 views

HTTP: max length of etag

Does the HTTP protocol specify a max length for the ETag?
1
vote
1answer
79 views

Can eTag be used for smart client caching in asp.net MVC as in Rails?

I've found in this screencast ¹ that you can do, in Ruby in Rails, a better client caching ² considering REST + model for filling eTag. Way more smart than render all the http body and only after all …
1
vote
1answer
78 views

What does “subrange” mean in the HTTP spec?

See, for example, §13.3.3 and §13.3.4. It doesn't seem to me that this could be related to "media range" (§14.1, e.g. Accept: text/*), nor "language range" (§14.4, e.g. Accept-Language: da, …
1
vote
3answers
698 views

How do you make an etag that matches Apache?

I want to make an etag that matches what Apache produces. How does apache create it's etags?
0
votes
1answer
31 views

YSlow giving inconsistent results on ETags

When I run YSlow against my site, I get an "F" on the "Configure ETags" item; it claims that there are no etags for many (all?) of my images, stylesheets, etc. However, if I run the test on one of …
0
votes
2answers
36 views

bad ETag value in test and production environment

i'm using the new caching solution for Rails as described here. the development environment works fine, but the test and production sends invalid ETag header ignores the parameter of the stale? …
0
votes
1answer
46 views

Removing _dc parameter in Ext

Using Ext, default Ext.Ajax add to GET-request '_dc' parameter. For example 'GET /ConnViewProcessing/?_dc=1263286227619'. How to remove this parameter? PS: it's necessary to manually cache response …
0
votes
0answers
31 views

fresh_when in ruby not working with xml rendering

While trying to implement support for conditional GETting in a rest system, we have come across the fresh_when and stale? methods. The following code works fine with 304 and not further rendering: …
0
votes
1answer
56 views

Disk caching http Library for Java: Does it exist?

Apache HttpClient does not have caching as far as I can see so my question is do you know about a Http library that can cache to disk? It would be fun to implement it myself but before i do it, it is …
0
votes
1answer
283 views

how does iis 7 generate etags

what method/algorithm does iis 7 use to generate etags. I'm looking for exact, not 'well they use checksum on the date' This leaves lots of questions. What algorithm for checksum, which date, which …
0
votes
1answer
387 views

Programatically removing etag suffix (change number) from the metabase IIS6

IIS 6.0 generates eTag values in the format of "hash:changenumber". The changenumber goes up every time IIS resets, so your eTag is only valid for the lifetime of your IIS process. Restart, number …
0
votes
1answer
236 views

Single web server and ETags

Hi, Does anyone know if it is worth disabling ETags on an web application that is hosted on a single web server? Currently we don't make use of ETags in our application. If it is worth disabling them …
0
votes
2answers
86 views

Web caching when retrieving lists of documents

We have a need to leverage client side resources for lists containing tasks. The client needs to: be notified of updates to the list be able to re-order/filter the list (requesting an update from …
0
votes
2answers
545 views

How to remove eTag from IIS5 http headers

Running IIS5 (yes, really). I'd like to remove the eTag http header that IIS generates for me. MS has an article on how to sync eTags across the web farm, but not how to remove them ( …