Re: Comparing two indexes for equality - Finding non stored fieldNames per document

2018-01-03 Thread Chetan Mehrotra
> This isn't an API problem. This is by design -- this is how it works. Ack. What I was referring to wrt api earlier that uninverting the index is not a direct operation and hence not supported via api. This would need to be done by using other api and would require post processing of index conten

Re: Comparing two indexes for equality - Finding non stored fieldNames per document

2018-01-03 Thread Dawid Weiss
> That helps and explains why there is no support in std api This isn't an API problem. This is by design -- this is how it works. If you wish to retrieve fields that are indexed and stored with the document, the API provides such an option (indexed and stored field type). Your indexed fields are

Re: Comparing two indexes for equality - Finding non stored fieldNames per document

2018-01-03 Thread Chetan Mehrotra
>> So unless you "store" that value >> with the document as a stored field, you'll have to "uninvert" the >> index yourself. That helps and explains why there is no support in std api > Luke has some capabilities to look at the index at a low level, > perhaps that could give you some pointers. I