Hi all About the RAMBufferSize and commit ,I have read the doc : http://comments.gmane.org/gmane.comp.jakarta.lucene.solr.user/60544
I can not figure out how do they make work. Given the settings: <ramBufferSizeMB>10</ramBufferSizeMB> <autoCommit> <maxTime>${solr.autoCommit.maxDocs:1000}</maxTime> <openSearcher>false</openSearcher> </autoCommit> If the indexs docs up to 1000 and the size of these docs is below 10MB ,it will trigger an commit. If the size of the indexed docs reaches to 10MB while the the number is below 1000, it will not trigger an commit , however the index docs will just be flushed to disk,it will only commit when the number reaches to 1000? Are the two scenarioes right? Regards