I have a multivalued solr field, which is only used to filter the search results. This field contains a number of groups and if the user belongs to one of this groups then this document will be in his search resalt.
<field name="group" type="string" indexed="true" multiValued="true" stored="false"/>
Since I have tens of thousands of groups, this causes performance problems.
Is there any better way to handle fields with this many values than multivalued fields
?