Re: Adding a new PointDocValuesField

2022-05-23 Thread Patrick Zhai
Hi Marc Thank you for starting the discussion, I think all your points make sense, but I'm wondering if we really need everything packed into one field? And what are the advantages of doing that? I *think* most of the facet related use cases can be satisfied using multiple fields, one field per

Adding a new PointDocValuesField

2022-05-23 Thread Marc D'Mello
Hi, Some background: I've been working on this PR to add hyper rectangle faceting capabilities to Lucene facets and I needed to create a new doc values field to support this feature. Initially, I had a field that just extended BinaryDocValues, but then