Tagged Questions

A program to generate tags for a large project. These tags are usable by the Emacs text editor.

learn more… | top users | synonyms (1)

52
votes
3answers
11k views

ETag vs Header Expires

I've looked around but haven't been able to figure out if I should use both an ETag and an Expires Header or one or the other. What I'm trying to do is make sure that my flash files (and other images ...
47
votes
9answers
11k 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 ...
23
votes
1answer
3k views

How do I support ETags in ASP.NET MVC?

How do I support ETags in ASP.NET MVC?
15
votes
3answers
2k 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?
10
votes
6answers
2k 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 ...
9
votes
2answers
4k views

emacs, etags and using emacs as an IDE

My usual tools are Emacs with g++ on a Linux system to implement my research algorithms. For the last some years, I have used emacs in a fairly basic way. I open C or C++ files, edit them with a ...
8
votes
3answers
2k views

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

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 ...
7
votes
2answers
534 views

emacs intellisense

I know this has been discussed a lot of times but is there any nice how-to for c/c++ intellisense in emacs? I have never been able to set up cedet properly. Right now I am working on a maintenance ...
7
votes
6answers
4k 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 ...
7
votes
3answers
3k 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 ...
7
votes
6answers
3k views

How to programmatically create/update a TAGS file with emacs?

Is there any plugin for emacs to automatically update the TAGS file in my C project (for example on buffer save or access) or create a new one if there is no TAGS file present? I am running on ...
6
votes
1answer
597 views

Is it possible to get Semantic (emacs) to visit all files automatically?

From what I can tell from the docs, semantic works by slowly building up an idea of what's in your project by analysing each file (and possibly its neighbours) as you visit them. This is too slow. I'd ...
6
votes
5answers
3k views

HTTP: Generating ETag Header

How do I generate an ETag HTTP header for a resource file?
5
votes
2answers
168 views

Is there a Ruby http client library with a response cache?

Is there a Ruby http client library where responses are automatically cached by ETag and the If-Non-Match header applied to requests on previously used URLs?
5
votes
2answers
2k views

Set ETag for FileResult - MVC 3

MVC 3 RTM. I have an action that returns a file (image/jpeg). I am trying to set the ETag for a file with no success (the etag doesn't come through on header). I have tried both Response.Cache.SetETag ...
5
votes
4answers
455 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
1answer
53 views

Emacs TAGS table is confused by #line directive in lex/yacc files

I am trying to generate TAGS tables using etags for a large software project. The TAGS file ends up having entries to non-existent files at top level instead of the existent ones in a sub-directory ...
4
votes
2answers
473 views

Create ETag filler in ASP.NET MVC

I would like to create an ETag filter in MVC. The problem is that I can't control the Response.OutputStream, if I was able to do that I would simply calculate the ETag according to the result stream. ...
4
votes
2answers
461 views

(Weak) ETags and Last-Modified

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 ...
4
votes
2answers
621 views

Clojure Emacs etags

I want to index clojure files, using etags so that i can use Emacs's tag functionality. But etags does not recognize clojure functions. is it possible to extend etags to include clojure definitions?
4
votes
3answers
629 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 ...
4
votes
4answers
2k 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
2answers
374 views

Using ETAGS/CTAGS in emacs with C++ Project

Im using emacs and etags to navigate my way round a project, is it possible to get to a header file easily by searching for a function. I have been using VisualStudio and I can view it by clicking ...
3
votes
1answer
105 views

Why Different Etags for Different Representations of the Same Resource?

I understand the use of etags for optimistic concurrency control (e.g. in a RESTful style of architecture), and I've read that etags should be different for different representations of the same ...
3
votes
1answer
209 views

PHP REST API with ETAG support?

Is there a possibility to create a REST API in PHP that supports ETags? And if yes, how could you use parse the response in PHP to consider the ETags?
3
votes
2answers
829 views

Remove Etag and Last-Modified headers from IIS

Did you know you can prevent the revalidation of files in browser cache and subsequent 304 response by completely removing both the ETag and Last-Modifed response headers? Of course, this is easy in ...
3
votes
1answer
1k views

The ctags command doesn't recurse saying “it is not a regular file”

When I run ctags -R *, I get errors saying that all directories are not regular files and it skips them instead of recursively generating tags for them. ctags: skipping arpa: it is not a regular ...
3
votes
3answers
702 views

Getting ETags right

I've been reading this book (highly recommended): And I have a particular question about the ETag chapter. The author says that ETags might harm performance and that you must tune them finely or ...
3
votes
1answer
90 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
3
votes
2answers
2k 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 to ...
3
votes
1answer
108 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 ...
3
votes
1answer
593 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
1answer
738 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
2answers
111 views

Combres doesn't put etag on content, why?

I have just used the Combres library in my project to minify the css and js files, and basically optimize the page a bit. Everythere I read about the Combres I see that it sends the etags together ...
2
votes
1answer
550 views

IIS 7.5 remove etag headers from response

I know this question has been asked alot of times, however most of them were in 2009-2010. I am pretty sure a while back a project I was working on removed them, however I cannot find any way to ...
2
votes
1answer
300 views

Disable automatic etag header in Rails 3

Rails automatically adds etag to all responses. How can I change this behaviour? I found some examples for rails 2.x, but it doesn't work.
2
votes
1answer
134 views

Disable ETags in php?

Our webhoster moved the site to a newer server and now i have the problem that i have ETags everywhere. I tried FileETag None in the htaccess but that does not work. They told me on the phone that ...
2
votes
1answer
343 views

Which one to use : Expire Header, Last Modified Header or ETags

I am in confusion to perform the server side caching and make the site load faster. I am confused between Expire Header, Last Modified Header and Etags. What is the best approach to perform this, ...
2
votes
0answers
242 views

Firefox & IE: Corrupted data when retrieved from cache

I have a request to the server which looks like this: http://localhost/Combine.aspx/flag/file1.js,file2.js,file3.js I have also tried this: ...
2
votes
1answer
161 views

What is the use of Django setting the ETag header?

What is the ETag header, why does Django set it and how should I use it?
2
votes
1answer
233 views

Caching, Weak Etags, and Last-Modified Issues

I'm having trouble with a few images on a site that I'm developing. Some images are being cached correctly and their headers seem correct (strong etags, correct last-modified). But other images have ...
2
votes
2answers
101 views

Creating incremental reports using Azure Tables

I need to create incremental reports in the table storage. I need to be able to update the same records from several different worker role instances (different roles with several instances each). My ...
2
votes
3answers
249 views

Is there a way to get emacs tag-search command to output all results to a buffer?

Is there a way to get Emacs tags-search command to collect all search results in a buffer? Something like the way results from 'grep' and 'tags-apropos' are collected in a compilation buffer? Using ...
2
votes
1answer
339 views

IIS7 ASP.NET MVC 2 Asset Caching Module Not Working

I have this HttpModule that I am using to remove unwanted headers and cache assets for about 30 days but it does not seem to work. Code and http response below: Response: Cache-Control private ...
2
votes
5answers
254 views

why is etags generating a corrupted TAGS file?

I have the following minimal source file: $ cat path/xx/yy/fooBar.c void this_is_a_test(void) { } If I run etags like this it works ok: $ etags path/xx/yy/fooBar.c $ cat TAGS ...
2
votes
2answers
333 views

Etags: generate tag for Objective-C methods declaration

How to make etags generate tags for both the declaration (i.e. inside the @interface block) and the definition (i.e. inside the @implementation block)? The default behavior is only to generate tags ...
2
votes
3answers
178 views

How to sort find result such that paths beginning with one of a set of patterns are sorted last

I have a find command that I would like to sort such that entries for certain directories are sorted last. The reason is that this list is to be passed to etags to create a tags table and I would ...
2
votes
1answer
126 views

eTag and many versions of page

I have an ASP .NET site with a custom server-side caching system which is a nightmare. I want to use eTags to replace this. Many of the links in the site return different versions of a page depending ...
2
votes
2answers
766 views

PHP setting Etag reliably

im having trouble setting the Etag on a user's browser reliably. When a user clicks on one of my external links, i would like to set the article id into their Etag (i use cookies too, but id like to ...
2
votes
1answer
103 views

Using UNIX find to generate TAGS files when the $CWD contains a space or special character

The following UNIX one-liner looks for Python files below the CWD and adds them to a TAGS file for Emacs (or we could do the same with Ctags). find . -name *.py -print | xargs etags This breaks if ...

1 2 3