I have lots of ".txt" files in a single directory and I wants to give it to lucene for indexing. I read all files of directory and for each file make its document and then use indexwriter.addDocument(Document) to give these files to lucene. Is it possible to make all documents and give all of them to lucene?? I mean does lucene support this feature?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
no, java doc will help you: http://lucene.apache.org/java/3_1_0/api/all/org/apache/lucene/index/IndexWriter.html |
|||
|
|
|
No, you will have to add each document on its own. Furthermore I recommend using a configurable batch size to load just as many txt files and index them and carry on as long as there are more text files. This way you will not run into memory problems when you have bigger files. |
|||
|
|
|
This feature was added in lucene 3.2 |
|||
|
|