On Tue, Aug 4, 2015, at 06:13 PM, Mugeesh Husain wrote: > @Upayavira if i uses Solrj for indexing. autocommit or Softautocommit > will > work in case of SolJ
There are two ways to get content into Solr: * push it in via an HTTP post. - this is what SolrJ uses, what bin/post uses, and everything else other than: * DIH: this runs inside Solr and pulls content into the index via configurations Personally, I'm not a fan of the DIH. It works for simple scenarios, but as soon as your needs get a little complex, it seems to struggle, and it seems your needs have become sufficiently complex already. Solr itself does the autocommit, so it will work with anything that you use to push content into Solr, SolrJ, bin/post, DIH or anything else. Upayavira