PointValues wildcard search in 6.0?

2016-04-29 Thread John Doe
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

Re: Storing numeric fields in Apache 6

2016-04-29 Thread Alan Woodward
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

RE: Storing numeric fields in Apache 6

2016-04-29 Thread Uwe Schindler
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().

Re: Storing numeric fields in Apache 6

2016-04-29 Thread j . Pardos
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