Re: Lucene Index File Format

2012-11-16 Thread wgggfiy
I'm study deeply in the index format, write java utils to log all of it. And now I have successfully logged .si, .fnm, .fdx, .fdt, but the .tim and .tiq is too complicated... -- View this message in context: http://lucene.472066.n3.nabble.com/Lucene-Index-File-Format-tp4011133p4020685.html S

Re: Lucene Index File Format

2012-10-01 Thread Michael McCandless
See the javadocs for each part of the Lucene40Codec: each class details its format. Mike McCandless http://blog.mikemccandless.com On Mon, Oct 1, 2012 at 1:16 AM, Selvakumar wrote: > Hi Pranab Kumar, > > I'm not looking for reading the documents through IndexReader. > I just want to know how do

Re: Lucene Index File Format

2012-09-30 Thread Selvakumar
Hi Pranab Kumar, I'm not looking for reading the documents through IndexReader. I just want to know how does lucene persists its data in the index. I just want to learn about the metadata and the meta-objects of lucene index. On 10/1/2012 10:44 AM, parnab kumar wrote: Hi, U

Re: Lucene Index File Format

2012-09-30 Thread parnab kumar
Hi, Use IndexReader instead . You can loop through the index and read one document at a time . Thanks, Parnab On Mon, Oct 1, 2012 at 10:33 AM, Selvakumar wrote: > Hi, > > I'm new to Lucene and I reading the docs on Lucene. > > > I read through the Lucene Index File Format, so to e