Re: Check to see if index is optimized

2005-01-07 Thread Mike Snare
Based on the method sent earlier, it looks like Lucene first checks to see if optimization is even necessary. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Check to see if index is optimized

2005-01-07 Thread Mike Snare
> If an index has no deletions, it does not need to be optimized. You can > find out if it has deletions with IndexReader.hasDeletions. Is that true? An index that has just been created (with no deletions) can still have multiple segments that could be optimized. I'm not sure your s

Re: Check to see if index is optimized

2005-01-07 Thread Luke Francl
On Fri, 2005-01-07 at 13:24, Crump, Michael wrote: > Is there a simple way to check and see if an index is already optimized? > What happens if optimize is called on an already optimized index - does > the call basically do a noop? Or is it still and expensive call? If an index has no

Re: Check to see if index is optimized

2005-01-07 Thread Morus Walter
Crump, Michael writes: > > Is there a simple way to check and see if an index is already optimized? > What happens if optimize is called on an already optimized index - does > the call basically do a noop? Or is it still and expensive call? > Why don't you just try that?

Re: Check to see if index is optimized

2005-01-07 Thread Luke Shannon
Check to see if index is optimized Hello, Lucene is great! I just have a question. Is there a simple way to check and see if an index is already optimized? What happens if optimize is called on an already optimized index - does the call basically do a noop? Or is it still and expensive ca

Check to see if index is optimized

2005-01-07 Thread Crump, Michael
Hello, Lucene is great! I just have a question. Is there a simple way to check and see if an index is already optimized? What happens if optimize is called on an already optimized index - does the call basically do a noop? Or is it still and expensive call? Regards, Michael

Re: Optimized??

2004-11-22 Thread Luke Shannon
uel Angel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 20, 2004 5:19 PM Subject: Optimized?? What`s mean Optimized index in Lucene¿? -- Miguel Angel Angeles R. Asesoria en Conectividad y Servidores Telf. 97451277 --

Re: Optimized??

2004-11-20 Thread Nader Henein
The down and dirty answer is it's like defragmenting your harddrive, you're basically compacting and sorting out index references. What you need to know is that it makes searching so much faster after you've updating the index. Nader Henein Miguel Angel wrote: What`s mean Opt

Optimized??

2004-11-20 Thread Miguel Angel
What`s mean Optimized index in Lucene¿? -- Miguel Angel Angeles R. Asesoria en Conectividad y Servidores Telf. 97451277 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Number of documents to be optimized

2004-11-12 Thread Ravi
How do I know the number of documents to be optimized (If I have one large index, number of documents that are in other segments) at any time? Thanks in advance, Ravi. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: how to decide when the index needs to be optimized ?

2002-04-11 Thread Aruna Raghavan
Gospodnetic [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:35 AM To: Lucene Users List Subject: Re: how to decide when the index needs to be optimized ? My understanding it that you don't even have to optimize the index, unless you want your searches to be faster. I don&#x

Re: how to decide when the index needs to be optimized ?

2002-04-11 Thread Otis Gospodnetic
My understanding it that you don't even have to optimize the index, unless you want your searches to be faster. I don't think Lucene has any internal limitation to the number of files that comprise an unoptimized index, so you'll hit the wall with Java or OS first, but even that limit is pretty hi

how to decide when the index needs to be optimized ?

2002-04-11 Thread Biswas, Goutam_Kumar
Hello ! We're building a Document Management System and we're using Lucene to index the document contents. Initially when we're populating our database we're adding the documents to the index also. We're also Optimizing the index after adding the documents to the index. Now