Re: [PR] Let Decompressor implement the Closeable interface. [lucene]

2025-04-05 Thread via GitHub
jpountz commented on PR #14438: URL: https://github.com/apache/lucene/pull/14438#issuecomment-2778028781 Unfortunately, you can't easily use close() to release resources from a Decompressor, because `StoredFieldsReader` is cloneable, and close() is never called on the clones. The only worka

Re: [PR] Let Decompressor implement the Closeable interface. [lucene]

2025-04-04 Thread via GitHub
mulugetam closed pull request #14438: Let Decompressor implement the Closeable interface. URL: https://github.com/apache/lucene/pull/14438 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specifi

Re: [PR] Let Decompressor implement the Closeable interface. [lucene]

2025-04-04 Thread via GitHub
mulugetam commented on PR #14438: URL: https://github.com/apache/lucene/pull/14438#issuecomment-2779253165 > Unfortunately, you can't easily use close() to release resources from a Decompressor, because `StoredFieldsReader` is cloneable, and close() is never called on the clones. The only w