Re: docValues with stored and useDocValuesAsStored

2018-01-08 Thread Shalin Shekhar Mangar
Hi Bernd, If Solr can fetch a field from both stored and docValues then it chooses docValues only if such field is single-valued and that allows Solr to avoid accessing the stored document altogether for *all* fields to be returned. Otherwise stored values are preferred. This is the behavior since

docValues with stored and useDocValuesAsStored

2018-01-08 Thread Bernd Fehling
What is the precedence when docValues with stored=true is used? e.g. My guess, because of useDocValuesAsStored=true is default, that stored=true is ignored and the values are pulled from docValues. And only if useDocValuesAsStored=false is explicitly used then stored=true comes into play. Or sh