Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Wiki Markup
Overwrite new solr core configuration file \[dspace-source\]/dspace/solr/searchJSPUI/conf/schema.xml with this file [^schema.xml] to handle lucene indexes generated by indexesJSPUI.

If no modification to search indexes has been done on dspace.cfg file this configuration file will be enough:schema.xml

Note

If we have added new search fields we must add them to schema.xml file in order to be accessible by SOLR and allow autocomplete funcionality. Example in schema.xml:

Code Block
<field name="publisher" type="text" indexed="true" stored="true" />
<!-- field must have the same name value as we defined in search index in dspace.cfg -->


...