Tagged Questions

0
votes
1answer
12 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
201 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 …
1
vote
1answer
22 views

HTTP: max length of etag

Does the HTTP protocol specify a max length for the ETag?
0
votes
0answers
14 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: …
3
votes
1answer
101 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 …
0
votes
1answer
49 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
199 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 …
1
vote
1answer
66 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 …
2
votes
3answers
183 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 …
10
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 …
3
votes
2answers
186 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?
1
vote
2answers
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 …
6
votes
1answer
350 views

How do I support ETags in ASP.NET MVC?

How do I support ETags in ASP.NET MVC?
0
votes
1answer
317 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 …
1
vote
3answers
585 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 …

1 2 next
15 30 50 per page