2

How can i turn off the multivalued in solr?

I tried to edit the manage-schema file inside /data_driven_schema_configs/conf/ folder and set all multivalued="true" to false.

Then restart solr and then create new collection, but nothing changed.

I need this because i need to sort my data in the table in banana ui.

Thank you.

Chrs
  • 862
  • 6
  • 10
Eiger
  • 43
  • 7

1 Answers1

3

Create your own schema.xml in the "/data_driven_schema_configs/conf/" or rename the current managedschema to schema.xml

After that change settings in

\conf\solrconfig.xml

add <schemaFactory class="ClassicIndexSchemaFactory"/> to solarconfig.xml

After this change you can modify the schema.xml and restart the server.

The changes made will be reflected to your fields.

Abhijit Bashetti
  • 8,518
  • 7
  • 35
  • 47