Updating the doc value will not update the stored field (what document.get returns). If you need to change stored fields you have to use the IW.updateDocuments API, where the old document is deleted and a new document is indexed, atomically (to refresh).
But also see Erick's solr-specific response (to the list) a week ago. Mike McCandless http://blog.mikemccandless.com On Mon, Jun 19, 2017 at 5:41 AM, Joe Ye <yuanzhou...@gmail.com> wrote: > Hi, > > Could anyone help with my issue described below? If I'm not posting on the > right mailing list please direct me to the correct one. > > Many thanks, > Joe > > > On Mon, Jun 12, 2017 at 3:05 PM, Joe Ye <yuanzhou...@gmail.com> wrote: > > > Hi, > > > > I have a few NumericDocValuesField fields and also added separate > > StoredField fields to store the values so that I can access them in query > > results. I used IndexWriter.updateNumericDocValue to update the value of > > a DocValues field. Then I firstly called SearcherManager.maybeRefresh to > > ensure SearcherManager.acquire will return refreshed instances and used > DocValuesNumbersQuery > > with the updated value. I did get the matching document in the query > > result but when I tried to access its value using Document.get, it's > still > > the old value. It appears that updating the DocValues field doesn't > update > > its associated StoredField value. What do I miss here? > > > > > > I would highly appreciate your help! > > > > > > Regards, > > > > Joe > > >