-
as seen on Pro Webmasters
- Search for 'Pro Webmasters'
Google's PageSpeed plugin suggests that a website should include Last-Modified and ETag headers:
Specify a cache validator "Resources that do not specify a cache
validator cannot be refreshed efficiently. Specify a Last-Modified or
ETag header to enable cache validation"
However, Apache…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Following this article: Configuring favicon with expires header in htaccess
Using YSlow, I keep getting:
(no expires) http://devwww.someplace.com/favicon.ico
Also, YSlow indicates:
Grade C on Configure entity tags (ETags)
for the same file.
My relevant config (.htaccess):
# Configure…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What I'm doing
I'm pulling an image from the database and sending it to the browser with all the proper headers - the image displays fine. I also send an ETag header, using the SHA1 of the image's content as the tag.
The images are getting called semi regularly, so caching is a bit of an issue (won't…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm looking for some help developing what I think should be an easy program.
I want something similar to Emacs tags-search command, but I want to collect all search results into a buffer. (I want to see all results of M-,)
I'm thinking this python style pseudo code should work, but I have no idea…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
As far as I understand the specs, the ETag, which was introduced in RFC 2616 (HTTP/1.1) is a predecessor of the Last-Modified-Header, which is proposet to give the software-architect more controll over the cache-revalidating process.
If both Cache-Validation-Headers (If-None-Match and If-Modified-Since)…
>>> More