You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2013/05/22 20:30:09 UTC

[Solr Wiki] Update of "FAQ" by ShawnHeisey

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "FAQ" page has been changed by ShawnHeisey:
http://wiki.apache.org/solr/FAQ?action=diff&rev1=87&rev2=88

Comment:
added link for HowToReindex

  }}}
  
  And use those as you're developing to clear out the index as necessary.
- 
  
  == How can I rebuild my index from scratch if I change my schema? ==
   1. Use the "match all docs" query in a delete by query command before shutting down Solr: {{{<delete><query>*:*</query></delete>}}}
@@ -84, +83 @@

   1. Re-Index your data
  
  One can also delete all documents, change the schema.xml file, and then [[CoreAdmin|reload the core]] w/o shutting down Solr.
+ 
+ == How to I reindex my data? ==
+ This deceptively simple question requires its own page: HowToReindex
  
  == How can I update a specific field of an existing document? ==
  I want update a specific field in a document, is that possible? I only need to index one field for a specific document. Do I have to index all the document for this?