RE: Indexing In Lucene

2006-10-04 Thread sachin
I am working on the Lucene... I have prepared the document about in-depth indexing. Unfortunately I can't attach it to the mail due to site constraint. But I can send it to your Personal Email .. --- Sachin -Original Message- From: Ajani, Akil (Cognizant) [mailto:[EMAIL PROTECTED] Sent:

Re: Indexing In Lucene

2006-10-03 Thread Nicolas Lalevée
Le Mardi 03 Octobre 2006 14:27, Nicolas Lalevée a écrit : > Le Mardi 03 Octobre 2006 12:06, W.H. van Atteveldt a écrit : > > I don't know what you're doing but the to: header is empty in your email > > which is really annoying (since I rely on the to: to sort my mail) > > Strange. Looking to the so

Re: Indexing In Lucene

2006-10-03 Thread Nicolas Lalevée
Le Mardi 03 Octobre 2006 12:06, W.H. van Atteveldt a écrit : > I don't know what you're doing but the to: header is empty in your email > which is really annoying (since I rely on the to: to sort my mail) Strange. Looking to the source of Ajani's mail, there is : To: And my filter worked : I put

RE: Indexing In Lucene

2006-10-03 Thread W.H. van Atteveldt
I don't know what you're doing but the to: header is empty in your email which is really annoying (since I rely on the to: to sort my mail) > -Original Message- > From: Ajani, Akil (Cognizant) [mailto:[EMAIL PROTECTED] > Sent: dinsdag 3 oktober 2006 10:47 > Subject: Indexing In Lucene > >

Re: indexing in lucene 1.9.1

2006-05-22 Thread Harini Raghavan
Hi Mike, Yes you are right, when we run the optimize(), it creates one large segment file and makes the searching faster. But the issue is our index keeps growing every minute as we download documents add to the index, so we cannot call optimize so often. The indexing seemed to be fine till w

Re: indexing in lucene 1.9.1

2006-05-22 Thread Mike Richmond
Hello Harini, When you are finished indexing the documents are you running the optimize() method on the IndexWriter before closing it? This should reduce the number of segments and make searching faster. Just a thought. --Mike On 5/22/06, Harini Raghavan <[EMAIL PROTECTED]> wrote: Hi All,