Basic Customization > User Interface Customization > Windchill Search Customization > Customizing Solr > autoCommit
  
autoCommit
Windchill uses the Solr auto commit feature to commit the index information automatically after certain criteria is met.
You can configure autoCommit in solrconfig.xml.
This criteria is specified under the following element:
<updateHandler class="solr.DirectUpdateHandler2">
<autoCommit>
<maxDocs>1000</maxDocs>
<maxTime>60000</maxTime>
</autoCommit>
maxDocs
maxDocs is the maximum uncommited Windchill business object documents before autocommit triggered
maxTime
maxTime is the maximum time (in milliseconds) after adding a Windchill business object document before an autocommit event is triggered
Indexed searches perform better when the maxTime and maxDocs values are higher.
However, an object does not appear in search results unless the index information is committed.
* 
Use higher values when you run bulk indexing.