Re: lucene question, examples

2005-03-03 Thread Otis Gospodnetic
Brian, It sounds like you are using a little demo application that comes with Lucene. This is really just a demo that shows how you can use Lucene. Lucene in a toolkit for building search applications, so you would really want to develop something of your own around Lucene. Sure, you can use a

RE: Sandbox

2005-03-03 Thread Chong, Herb
i got a 404 on all the URLs pointing to the sandbox before i emailed to the list. your link worked. Herb... -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 4:49 PM To: java-user@lucene.apache.org Subject: Re: Sandbox Don't know why you got

Re: Sandbox

2005-03-03 Thread Erik Hatcher
Don't know why you got a 404 on the URL I sent its a valid URL, and in fact the same URL used to check out the repository with an svn client. Erik On Mar 3, 2005, at 4:01 PM, Chong, Herb wrote: if i had gotten something other than a 404 error, i might have had a chance. Herb... ---

lucene question, examples

2005-03-03 Thread Brian Cuttler
I've sorry if this is the wrong forum, I was trying for lucene-user and been unable to subscribe (but seem to see lucene items here). We have been runing apache on our internal sites for a while, with tomcat and lucene. Plugged in the demo index build and search features... and for a long time li

Re: Problem with Lucene web

2005-03-03 Thread Erik Hatcher
I have corrected the incorrect hyperlink issues. Sorry 'bout that. Erik On Mar 3, 2005, at 2:22 PM, Antonio Chillarón Barahona wrote: Hello, I am sorry if this is not the proper forum for this question. Recently, I have tried to download Snowball from Lucene's Sandbox but the link on "Mor

RE: Sandbox

2005-03-03 Thread Chong, Herb
if i had gotten something other than a 404 error, i might have had a chance. Herb... -Original Message- From: Otis Gospodnetic [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 4:00 PM To: java-user@lucene.apache.org Subject: RE: Sandbox http://svn.apache.org/repos/asf/lucene/ja

RE: Sandbox

2005-03-03 Thread Otis Gospodnetic
http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/ And some more stuff: http://svn.apache.org/repos/asf/lucene/java/trunk/sandbox/contributions/ Otis --- "Chong, Herb" <[EMAIL PROTECTED]> wrote: > no hints as to where under Subversion though. the first half of the > URL > below is refer

RE: Sandbox

2005-03-03 Thread Chong, Herb
no hints as to where under Subversion though. the first half of the URL below is referenced, but clicking on the link leads to a 404 error. Herb... -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 3:48 PM To: java-user@lucene.apache.org Subj

Problem with Lucene web

2005-03-03 Thread Antonio Chillarón Barahona
Hello, I am sorry if this is not the proper forum for this question. Recently, I have tried to download Snowball from Lucene's Sandbox but the link on "More information can be found ->here<-." from the page: http://lucene.apache.org/java/docs/lucene-sandbox/ does not seems to work because the

Re: Sandbox

2005-03-03 Thread Erik Hatcher
On Mar 3, 2005, at 2:13 PM, Chong, Herb wrote: where has the sandbox gone? the links from the Apache site no longer point to anything. Lucene is now in Subversion as mentioned on this very list :) The Sandbox repository was folded into our single Subversion repository at: http://svn.apach

AW: indexReader close method

2005-03-03 Thread Klaus Moysich
-Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Chris Hostetter Gesendet: Montag, 6. Dezember 2004 21:32 An: Lucene Users List Betreff: Re: indexReader close method : Do you know why I can't close the IndexReader explicitly under some : circums

Sandbox

2005-03-03 Thread Chong, Herb
where has the sandbox gone? the links from the Apache site no longer point to anything. Herb... - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: help with boolean expression

2005-03-03 Thread Erik Hatcher
On Mar 3, 2005, at 1:32 PM, Doug Cutting wrote: Daniel Naber wrote: On Wednesday 02 March 2005 12:25, Erik Hatcher wrote: I agree that the current behavior is awkward. Is it worth breaking backwards compatibility to correct this with the patch applied? I'd vote for fixing this as long as the curre

Re: help with boolean expression

2005-03-03 Thread Doug Cutting
Daniel Naber wrote: On Wednesday 02 March 2005 12:25, Erik Hatcher wrote: I agree that the current behavior is awkward. Is it worth breaking backwards compatibility to correct this with the patch applied? I'd vote for fixing this as long as the current QueryParser is still available in Lucene cor

Re: Remove document fails

2005-03-03 Thread Mauro Verrocchio
Sorry! I didn't know that: just got a fast look at the methods... Thanks anyway: this would be useful to remeber :) Mauro. On Thu, 03 Mar 2005 11:58:39 +0200, Volodymyr Bychkoviak <[EMAIL PROTECTED]> wrote: > If you read javadoc carefully you can read that unlock should be used > only for recover

Re: problem with not operator

2005-03-03 Thread Erik Hatcher
Try using an IndexSearcher.explain on a document in the search results that you know has "b" - this will give you the gory details of why. Also, try to simplify without MultiFieldQueryParser - its got plenty of known issues - for now and see what that gives you. Erik On Mar 3, 2005, at

Re: problem with not operator

2005-03-03 Thread Morus Walter
Niraj Alok writes: > Hi, > > When I am putting the query as 'a not b' there are some documents coming up > which have 'b' as well. > > I am searching on 3 fields using a MultiFieldQueryParser and while debugging > the query is also getting shown as > (field1:a -field1:b) (field2:a -field2:b) (fie

problem with not operator

2005-03-03 Thread Niraj Alok
Hi, When I am putting the query as 'a not b' there are some documents coming up which have 'b' as well. I am searching on 3 fields using a MultiFieldQueryParser and while debugging the query is also getting shown as (field1:a -field1:b) (field2:a -field2:b) (field3:a -field3:b) Yet the results h

Re: Fast access to a random page of the search results.

2005-03-03 Thread Kelvin Tan
Is this actually in the codebase? I couldn't find it in SVN or in Bugzilla... kelvin On Mon, 28 Feb 2005 11:59:54 -0500, Erik Hatcher wrote: > Or perhaps you > need to investigate the (is it in the codebase already?) patch to > load fields lazily upon demand instead. -

Re: Remove document fails

2005-03-03 Thread Gusenbauer Stefan
Volodymyr Bychkoviak wrote: If you read javadoc carefully you can read that unlock should be used only for recovery reason. Or you can damage your index. Mauro Verrocchio wrote: Try IndexDirectory.unlock(directory). It's in the javadoc. Cheers, Mauro. On Wed, 02 Mar 2005 22:40:27 +0100, Gusenbaue

Not storing norms and term positions info, possible?

2005-03-03 Thread eks dev
Hi, Is there a way to create index which does not store norms (.f..) and Positions (.prx files)? In the case I need to support, no length normalisation is needed, the same is with positional info. (Similarity.encodeNorms(float) returns 0; and Term.SetPositionalIncrement(0) is used) >From the size

Re: Remove document fails

2005-03-03 Thread Volodymyr Bychkoviak
If you read javadoc carefully you can read that unlock should be used only for recovery reason. Or you can damage your index. Mauro Verrocchio wrote: Try IndexDirectory.unlock(directory). It's in the javadoc. Cheers, Mauro. On Wed, 02 Mar 2005 22:40:27 +0100, Gusenbauer Stefan <[EMAIL PROTECTED]>