Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fight the fieldcache by usind DocValues: in Solr-5.x the fieldcache has
moved and was not cleared anymore. This results in an huge fieldcache. (http://lucene.apache.org/#highlights-of-the-lucene-release-include https://issues.apache.org/jira/browse/LUCENE-5666) Here I try to use DovValues where it is possible. For this I used the Api-Scheme as new basis für the Solr-Schema. This needs at least a complete optimization of the Solr-Index to get a smaller FieldCache. Everything that is indexed with these setting will not use the Fieldcache at all.
- Loading branch information
Showing
with
144 additions
and 662 deletions.
- +109 −642 defaults/solr/schema.xml
- +1 −0 htroot/api/schema.java
- +15 −15 htroot/api/schema.xml
- +2 −0 source/net/yacy/cora/federate/solr/SchemaDeclaration.java
- +1 −1 source/net/yacy/cora/federate/solr/connector/AbstractSolrConnector.java
- +2 −2 source/net/yacy/search/query/QueryParams.java
- +7 −1 source/net/yacy/search/schema/CollectionSchema.java
- +7 −1 source/net/yacy/search/schema/WebgraphSchema.java