Re: Creating indexes

2002-06-18 Thread Chris Sibert
Thanks. - Original Message - From: "Nader S. Henein" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Wednesday, June 19, 2002 2:54 AM Subject: RE: Creating indexes > just store the whole thing into the indexc .. it'll make

RE: Creating indexes

2002-06-18 Thread Nader S. Henein
rt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 19, 2002 10:47 AM To: Lucene Users List Subject: Re: Creating indexes The file that I have is big, about 40 MB. And it's got a whole lot of smaller documents in it - about 15 thousand - too many to separate into individual files. These individua

Re: Creating indexes

2002-06-18 Thread Chris Sibert
;[EMAIL PROTECTED]> Sent: Wednesday, June 12, 2002 11:56 AM Subject: Re: Creating indexes > Lucene doesn't know where a file start or ends, actually it knows, but in your case 1 Docuemtn contains more small documents.If you want to split your big file in small files you must to that by yo

Re: Creating indexes

2002-06-12 Thread none none
Lucene doesn't know where a file start or ends, actually it knows, but in your case 1 Docuemtn contains more small documents.If you want to split your big file in small files you must to that by yourself, Take a look at the Document class and you will see that Lucene use a Reader to index the

RE: Creating indexes

2002-06-11 Thread Nader S. Henein
Users List Subject: Creating indexes I have a big ( 40 MB or so) file to index. The file contains a whole bunch of documents, which are each pretty small, about a few typewritten pages long. There's a title, date, and author for each document, in addition to the documents' actual text. I&#

Creating indexes

2002-06-11 Thread Chris Sibert
I have a big ( 40 MB or so) file to index. The file contains a whole bunch of documents, which are each pretty small, about a few typewritten pages long. There's a title, date, and author for each document, in addition to the documents' actual text. I'm not quite sure how you index this in Lucene