Re: Lucene coreClosedListeners memory issues

2019-06-04 Thread Adrien Grand
Yes, closed listeners are often about cleaning up caches. If you are closing all searchers, then something else to check is whether your code is retaining references to released searchers (it shouldn't). On Mon, Jun 3, 2019 at 4:32 PM alex stark wrote: > > Thanks Adrien. > > > > I double checked

Re: [Issue] omitNorms ignored in DefaultIndexingChain.getOrAddField method

2019-06-04 Thread Adrien Grand
The field is indeed initially created with omitNorms=false, but this gets fixed later in PerField#invert. Additionally I can't reproduce the bug you are describing: if I index documents with norms disabled, then I don't have norms in my index. On Sat, Jun 1, 2019 at 4:55 AM kai loofi wrote: > > H