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
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
>
"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
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