Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by HossMan: http://wiki.apache.org/solr/FAQ ------------------------------------------------------------------------------ A few ideas: * Include multiple documents in a single `<add>` operations. Note: there is no advantage in trying to post a huge number of docs in a single go. I'd suggest going no further than `10` (full-size docs) to `100` (tiny docs). * Ensure you are not performing `<commit/>` until you need to see the updated index. - * If you are reindexing documents, wiping the index first can substantially speed up the required time and disk space. + * If you are reindexing every document in your index, completely removing the index first can substantially speed up the required time and disk space. * Solr can do some, but not all, parts of indexing in parallel. Indexing on multiple threads can be a boon, particularly if you have multiple cpus and your analysis requirements are considerable. * Experiment with different `mergeFactor` and `maxBufferedDocs` settings (see [http://www.onjava.com/pub/a/onjava/2003/03/05/lucene.html]).
