Re: Multisearch Problem

2006-06-09 Thread Dan Wiggin
My lucene version is 1.4.3 and always worked with this. Someday I have to do the change to Lucene 2.0. But the problem isn't this because the problem is something like One index have something indexed and other index is olnly created but without any document. It's very strange because this problem

Re: Multisearch Problem

2006-06-08 Thread Daniel Naber
On Donnerstag 08 Juni 2006 19:59, Dan Wiggin wrote: > java.lang.ArrayIndexOutOfBoundsException: -1 You get this when you access a Lucene 1.9/2.0 index with Lucene 1.4. Maybe your classpath contains two versions of Lucene. Regards Daniel -- http://www.danielnaber.de -

Multisearch Problem

2006-06-08 Thread Dan Wiggin
Hello everybody I have a new problem that I want share with you :D The problem is doing a search in a Multisearcher. Normally this multisearcher works well. When I start my tomcat and my two index are empties, and if I do a search wtih this index I have no exception and obviusly no hits, but afte

Re: MultiSearch

2006-03-15 Thread Otis Gospodnetic
t;[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Wednesday, March 15, 2006 1:39:28 PM Subject: MultiSearch Hello Everyone, I currently have an IndexSearch working Great! What I want to do now, is move to a multi Index search. What's the best way to go about it? Is it a sim

MultiSearch

2006-03-15 Thread Brian
Hello Everyone, I currently have an IndexSearch working Great! What I want to do now, is move to a multi Index search. What's the best way to go about it? Is it a simple process? Any thought's would be appreciated. Thanks, B __ Do You Yahoo!? Ti

Re: Multisearch

2006-03-06 Thread Raul Raja Martinez
Wouldn't it make sense to have a Hit know where he came from such as hit.getIndex() instead of having to invoke subSearcher or subDoc? Just a thought Erik Hatcher wrote: On Mar 6, 2006, at 10:05 AM, WATHELET Thomas wrote: I made a multi search into my Lucene index. It's work properly but I wou

RE: Multisearch

2006-03-06 Thread WATHELET Thomas
Thanks a lot. -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED] Sent: 06 March 2006 16:25 To: java-user@lucene.apache.org Subject: Re: Multisearch On Mar 6, 2006, at 10:05 AM, WATHELET Thomas wrote: > I made a multi search into my Lucene index. It's work proper

Re: Multisearch

2006-03-06 Thread Erik Hatcher
On Mar 6, 2006, at 10:05 AM, WATHELET Thomas wrote: I made a multi search into my Lucene index. It's work properly but I would like to know if it's possible to know in witch index de document belong to. This just came up the other day as well, and was covered in the past. Here's the thread w

Multisearch

2006-03-06 Thread WATHELET Thomas
I made a multi search into my Lucene index. It's work properly but I would like to know if it's possible to know in witch index de document belong to.