Segments creation

2006-04-23 Thread John Paige
Hello all, In my application it is required to build an index for each user. We need to add documents to the existing index frequently. We cannot use RAMDirectory to create a RAM index and merge it with the FSDirectory index later on based on the mergefactor. We need to add each document in the

Re: Segments creation

2006-04-23 Thread John Paige
format (the default since Lucene > 1.4) you'll avoid the file descriptors issue. If you add 10 > documents at one time with a single IndexWriter, you will not create > 10 segments, only one segment (generally speaking, based on the > default segment factors). > > Erik >

Re: Segments creation

2006-04-23 Thread John Paige
"files" are kept inside a single > filesystem file. > > Erik > > > On Apr 23, 2006, at 2:13 PM, John Paige wrote: > > > So, if I use one indexwriter instance to index one document, will > > it create > > a segment per document? > > How m

Clucene document parsers

2006-04-25 Thread John Paige
Hello, Can somebody tell me what document parsers are available that can be used with CLucene? I know for lucene, XML->Text, pdf->Text, doc->Text, html->Text and RTF->Text all parsers are avilable. Have all of these been ported to CLucene? Thanks, John