Web / Apache Solr Interview questions
What is the purpose of managed-schema in Solr?
managed-schema is the file that defines the data model for a Solr core or collection: field names, field types, dynamic field patterns, copy fields, and the unique key.
It replaces the older, manually edited schema.xml approach. As the name suggests, it is meant to be modified through the Schema API at runtime rather than hand-edited, which lets applications add fields programmatically without restarting Solr.
Manual edits are still possible, but if Schema API calls are used, Solr expects to own the file and may overwrite manual formatting.
More Related questions...