[GitHub] [lucene] mocobeta commented on issue #11851: Luke web interface

2022-11-06 Thread GitBox
mocobeta commented on issue #11851: URL: https://github.com/apache/lucene/issues/11851#issuecomment-1304733837 I recognize there have been requests for a web-based Luke-like app. But I would prefer to develop/maintain such an application outside Lucene with some web application framework. I

[GitHub] [lucene] jfboeuf opened a new pull request, #11900: Reduce bloom filter size by using the optimal count for hash functions.

2022-11-06 Thread GitBox
jfboeuf opened a new pull request, #11900: URL: https://github.com/apache/lucene/pull/11900 BloomFilteringPostingsFormat currently relies on a bloom filter with one hash function (k=1). For a target false positive probability of 10%, 1 is never the optimal value for k. Using the best value

[GitHub] [lucene] mocobeta commented on pull request #11852: Luke Webapp

2022-11-06 Thread GitBox
mocobeta commented on PR #11852: URL: https://github.com/apache/lucene/pull/11852#issuecomment-1304828029 I'm late to the party. Do we really want to have/maintain a web application under Lucene? An HTTP server would not be sufficient to develop a state-full web app, you need to write an ap

[GitHub] [lucene] mdmarshmallow opened a new pull request, #11901: Github#11869: Add RangeOnRangeFacetCounts

2022-11-06 Thread GitBox
mdmarshmallow opened a new pull request, #11901: URL: https://github.com/apache/lucene/pull/11901 ### Description Issue: https://github.com/apache/lucene/issues/11869 Adds `RangeOnRangeFacetCounts` which supports double ranges and long ranges to mirror `RangeFacetCounts`. C