Hi, I am using solr to update a document and read it back immediately through search.
I do softCommit my changes which claims to use lucene's indexReader using indexWritter which was used to write teh document. But there are times when Itheget a stale document back even with waitSearcher=true. Does lucene's nrt (i.e. DirectoryReader open(IndexWriter writer, boolean applyAllDeletes)) guarantee's that the changes made through the wirtter will be visible to reader immediately? Thanks.