Give RequestHandlers the possiblity to suppress the generation of HTTP caching
headers
--------------------------------------------------------------------------------------
Key: SOLR-505
URL: https://issues.apache.org/jira/browse/SOLR-505
Project: Solr
Issue Type: Bug
Components: search
Affects Versions: 1.3
Reporter: Thomas Peuss
The code from SOLR-127 emits HTTP cache headers for all handlers if configured.
We should not emit cache related headers for update request handlers. Partial
responses (coming from the Timeout request stuff) should not be cached as well.
To solve this problem we can simply add two methods to the SolrQueryResponse
class (like void setAvoidHTTPCaching(boolean) and boolean isAvoidHTTPCaching()
- the default for the value would be false). The update request handlers should
set this to true all the time. The partial response stuff can set this to true
as well.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.