<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: collapse; font-family: Arial; white-space: pre-wrap; "><div>I never liked the way we work around mass insertion and OOME today</div><div><br></div>hibernate.search.worker.batch_size has many drawbacks
 - the value is not accessible programatically
 - it applies to any operations regardless of mass indexing
 - it is used 99% of the time in close conjunction with a % and session.clear()
 - the side effect is quite big as the index is "transactionally" committed
 
To replace it, I introduced 
session.flushToIndexes();
this method manually triggers changes in queue. It does not trigger an hibernate core flush().

This seems more reasonable and will make the code safer.

WDYT? Better name?</span><div><font class="Apple-style-span" face="Arial"><span class="Apple-style-span" style="border-collapse: collapse; white-space: pre-wrap;"><br></span></font><div apple-content-edited="true"> <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>--</div><div>Emmanuel Bernard</div><div><a href="mailto:emmanuel@hibernate.org">emmanuel@hibernate.org</a></div><div><a href="http://in.relation.to">http://in.relation.to</a></div><div><a href="http://blog.emmanuelbernard.com">http://blog.emmanuelbernard.com</a></div><div><a href="http://twitter.com/emmanuelbernard">http://twitter.com/emmanuelbernard</a></div></div></span></div></span> </div><br></div></body></html>