Re: Unknown type flag: 6 at CompressingStoredFieldsReader.readField

2016-08-25 Thread Adrien Grand
Actually there is one in 2 chances since `bits` is the result of `infoAndBits & 0x07`, so the only two out-of-range values that can be returned are 6 and 7. Does CheckIndex with the "-fast" option give any checksum error? Le mer. 24 août 2016 à 05:24, Trejkaz a écrit : > Hi all. > > Someone appa

Lucene 6.1: number of hits per document

2016-08-25 Thread szzoli
Hi, I would like to get the number of hits per document. I googled around a lot, there were code snipplets for older versions. None of them works with Lucene 6.1. Any help would be appreciated. -- View this message in context: http://lucene.472066.n3.nabble.com/Lucene-6-1-number-of-hits-per-d

Re: Using Lucene's Multi Dimensional Space Search for Air traffic handling.

2016-08-25 Thread Michael McCandless
Geo3D uses more "straightforward" math since it can do everything on a unit (well, slightly squashed) sphere, but the downside is it must store 3 floats in the doc values. Whereas LatLonPoint must use Haversine, supposedly more costly, except Lucene has a rather optimized implementation, and in pr