In Solr 3.x, I was relying on a postCommit call to a listener in the update
handler to perform data update to caches, this data was used to perform
'realtime' filtering on the documents.
So something like:
<updateHandler ...>
...
<listener event="postCommit" class="mypackage.IndexUpdateListener"/>
</updateHandler>
In Solr 4.2.x, the postCommit is not called anymore on the slaves during
updates. (I agree the concept outlined above is kind of blurry when
thinking in term of NRT updates, but here it is more batch updates)
What would be a suggested alternative to hook up something similar and
basically receive events related to replication ?
Thanks
- stephane