You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2008/11/22 08:54:25 UTC

[Solr Wiki] Update of "SolrHttpCompression" by NoblePaul

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The following page has been changed by NoblePaul:
http://wiki.apache.org/solr/SolrHttpCompression

New page:
Solr does not respect the HTTP headers for compression. Since it is a web app running on top of a standard web container it expects the container to handle these.
= Tomcat =
The following settings are to be done in the Connector section to use Tomcat's native compression

example:
{code}
<Connector compression="on" 
compressableMimeType="text/html,text/xml,text/plain" 
compressionMinSize="2048"/>
{code}

[http://tomcat.apache.org/tomcat-5.5-doc/config/http.html#Standard%20Implementation See here] for more details 

= Jetty =
[http://docs.codehaus.org/display/JETTY/GZIP+Compression See here ] for details