Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "UpdateXmlMessages" page has been changed by JasonRutherglen: http://wiki.apache.org/solr/UpdateXmlMessages?action=diff&rev1=20&rev2=21 * `maxSegments = N` — default is '1' — optimizes down to at most this number of segments <!> [[Solr1.3]] * `waitFlush = "true" | "false"` — default is true — block until index changes are flushed to disk * `waitSearcher = "true" | "false"` — default is true — block until a new searcher is opened and registered as the main query searcher, making the changes visible. + * `expungeDeletes = "true" | "false"` — default is false — merge segments with deletes away. <!> [[Solr1.4]] Example of "commit" and "optimize" with optional attributes: {{{ <commit waitFlush="false" waitSearcher="false"/> + <commit waitFlush="false" waitSearcher="false" expungeDeletes="true"/> <optimize waitFlush="false" waitSearcher="false"/> }}}
