Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 56031 invoked from network); 1 Mar 2011 19:01:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Mar 2011 19:01:05 -0000 Received: (qmail 67685 invoked by uid 500); 1 Mar 2011 19:01:03 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 67114 invoked by uid 500); 1 Mar 2011 19:01:01 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 67091 invoked by uid 99); 1 Mar 2011 19:01:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Mar 2011 19:01:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Mar 2011 19:00:57 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id E46E34A782 for ; Tue, 1 Mar 2011 19:00:36 +0000 (UTC) Date: Tue, 1 Mar 2011 19:00:36 +0000 (UTC) From: "Hoss Man (JIRA)" To: dev@lucene.apache.org Message-ID: <358205915.5731.1299006036932.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1626770999.0.1298828617038.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] Resolved: (SOLR-2389) Default HTTP caching hurts developer experience. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/SOLR-2389?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man resolved SOLR-2389. ---------------------------- Resolution: Fixed Fix Version/s: 4.0 3.1 dealt with in SOLR-2397, example solrconfig.xml no longer has HTTP cache headers/validation configured. > Default HTTP caching hurts developer experience. > ------------------------------------------------ > > Key: SOLR-2389 > URL: https://issues.apache.org/jira/browse/SOLR-2389 > Project: Solr > Issue Type: Improvement > Affects Versions: 1.4.1 > Environment: Solr's example config > Reporter: David Smiley > Priority: Minor > Fix For: 3.1, 4.0 > > > The default configuration in example/solr/solrconfig.xml for HTTP caching can easily result cached responses (304) to a change configuration that would result in a different response. This results in a bad user (developer) experience, especially for the novice Solr user. It bit me several times when I was getting started. Hopefully I don't need to further convince committers that the default configuration is a problem. So as a consequence, I've always added never304="true" when starting new work with Solr and I recommend that readers of my book do the same. I'd like to see this rectified. > The lastModifiedFrom="openTime" attribute should not be a problem. The openTime is "safe" and should not introduce bad cached responses, except when the query response uses "NOW"; but there's little that can be done about that. > The etagSeed is a problem because it uses IndexReader.getVersion() which is the commit version and does not take into consideration the possibility of a configuration change. I hoped that not specifying etagSeed would result in no ETag but that did not occur -- I consider that a bug. Similarly, I would expect not specifying lastModifiedFrom would not result in a Last-Modified header but I haven't checked what happens. > I'm not an expert in caching headers but it seems a little redundant to use both Last-Modified & ETag (& potentially Expires) when just one of these would suffice. Would it not? -- This message is automatically generated by JIRA. - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org