In 8/24/07, David Whalen <[EMAIL PROTECTED]> wrote: > I'm unclear on whether changing the schema.xml file > automatically causes a reindex or not. If I'm adding > a field to the schema (and removing some unused ones), > does solr do the reindex? Or, do I have to kick it > off myself.
No... changing the schema does nothing to the index, it only affects how new documents are indexed and how the index is searched. If you make a backward compatible change (like adding a new field, or adding some more query-side synonyms) then you don't have to reindex. When in doubt, it's best to reindex. -Yonik