Reputation: 1206
I am planning to try Solr's docValues to hopefully improve facet and sort performance. I have some questions around this feature:
I am using Datastax Enterprise 4.5.2
Upvotes: 2
Views: 1588
Reputation: 726
Solr faceting implementation will make use of DocValues only if they're marked as multivalued, so unless your field is actually multivalued, I'd suggest to use a non-stored copy field with multiValued=true and docValues=true, to avoid storing your single-value field as a Cassandra list/set.
Upvotes: 1