Wildcard queries don't seem to be working for PointValues in Lucene 6.0 .
For example, "new WildcardQuery(new Term(some_LongPoint_field_name, "*")"
does not find anything. A similar query worked fine with LongFields though.
While PointValues javadocs say "are indexed differently than ordinary text
I'm not that familiar with MultiFields, but from a look at the code it seems to
only return fields that have postings data associated with them. Point fields
and DocValues fields are stored in different index structures. You should be
able to get information about these by using MultiFields.ge
Hi,
- StoredFields don't show up in fields(), because they have nothing to do with
the inverted index: fields() is about the inverted index only and returns
references to terms, statistics,...
- PointFields are different than conventional inverted fields, so they also
don't show up in fields().
Hello,
The suggested change worked in part: Luke now shows me the field contents, so
it's correctly stored, for sure. However, when I ask the IndexReader for the
field listing (with MultiFields.getFields(IndexReader) method) it doesn't
return that field. I've noticed in luke that the field is n