Re: How can I know the lucene index version from files

2025-03-02 Thread Daniel Cerqueira
get 4.9 (a decade old, heh) and invoke >> https://lucene.apache.org/core/4_9_0/demo/overview-summary.html#Searching_Files >> >> Or write a snippet of code, which opens a Directory\IndexReader and then >> print it to console that should answer your questions. >> >>

Re: How can I know the lucene index version from files

2025-03-02 Thread Daniel Cerqueira
> On Sun, Mar 2, 2025 at 12:21 AM Daniel Cerqueira > wrote: > >> I have this lucene index files, in a directory: >> >> ``` >> $ ls >> _1p.fdt _1p.fdx _1p.fnm _1p_Lucene41_0.doc _1p_Lucene41_0.pos >> _1p_Lucene41_0.tim _1p_Lucene41_0.tip _1p.nvd

How can I know the lucene index version from files

2025-03-01 Thread Daniel Cerqueira
I have this lucene index files, in a directory: ``` $ ls _1p.fdt _1p.fdx _1p.fnm _1p_Lucene41_0.doc _1p_Lucene41_0.pos _1p_Lucene41_0.tim _1p_Lucene41_0.tip _1p.nvd _1p.nvm _1p.si segments_1 segments.gen write.lock ``` - How can I know which is the version of this lucene index? -

Re: apache-lucene blowing up with large file

2025-02-28 Thread Daniel Cerqueira
> On Fri, Feb 28, 2025 at 10:30 AM Daniel Cerqueira > wrote: > >> Hi. I have apache-lucene version 10.1.0: >> ``` >> $ pacman -Qs apache-lucene >> local/apache-lucene 10.1.0-1 >> Apache Lucene is a high-performance, full-featured text search eng

apache-lucene blowing up with large file

2025-02-28 Thread Daniel Cerqueira
Hi. I have apache-lucene version 10.1.0: ``` $ pacman -Qs apache-lucene local/apache-lucene 10.1.0-1 Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java. ``` I am trying to build a lucene index for a large file. ``` $ ll total 2,3G -rw---