Re: indexing performance of little documents

2005-04-01 Thread Karl Øie
This might sound a bit lame but it has worked for me. I have had the same problem where the amount of small lucene documents slows down the building of large indexes. Search is pretty fast, and read only, so for my case i just created three indexes and saved every three lucene documents into on

indexing performance of little documents

2005-04-01 Thread Fabien Le Floc'h
Hello, I want to index a 1GB file that contains a list of lines of approximately 100 characters each, so that i can later get lines containing some particular text. The natural way of doing it with lucene would be to create 1 lucene Document per line. It works well except it is too slow for my ne