1.6 Performance

The following setting allows you to specify the size (number of pages) of a record from which an alternative page loading mechanism is used to avoid memory overflows for very large records. The default value is 1000.

<performance>
    <pageLoaderThreshold>1000</pageLoaderThreshold>
</performance>

Proxies upstream on the client side can cause unwanted effects when browsing due to their caching behavior (pages are not updated). This option adds attributes to the HTTP response that prevent proxy caching. The default value is false.

<performance>
    <preventProxyCaching>true</preventProxyCaching>   
</performance>

For diagnostic purposes, the HTTP compression of the Solr HTTP Client can be disabled. Default value is true. Furthermore, compatibility with Solr 4 can be activated. The default value is false.

<performance>
    <solr>
        <compressionEnabled>true</compressionEnabled>
        <backwardsCompatible>false</backwardsCompatible>
    </solr>
</performance>

Last updated