RE: Compile lucene

2003-01-10 Thread Oshima, Scott
Anyone can send me a link to the lucene mailing list email archives? these emails build up fast and i can't store them locally, but too valuable to delete. thanks. -Original Message- From: "Romo GarcĂ­a, Javier" [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 1:19 AM To: Lu

RE: phrase query and slop factor

2002-03-06 Thread Oshima, Scott
Just dont make it a phrase query. Remember a phrase is a set string. Your talking about combinations of non set strings. -Original Message- From: Otis Gospodnetic [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 8:40 AM To: Lucene Users List Subject: Re: phrase query and sl

RE: Performance Issue

2002-02-01 Thread Oshima, Scott
If not already, you may wanna create a IndexReader pool similar to database connection pools to speed up the query process. In terms of network and data transfer speeds, I don't think that is a lucene issue rather than an implentation issue on your side. I would just use an HttpServer to proxy

PorterStemmer

2002-01-10 Thread Oshima, Scott
Is there any documentation on the PorterStemmer in regards to algorithms its doing to words? Much thanks. -scott -- To unsubscribe, e-mail: For additional commands, e-mail:

character filter issue

2002-01-08 Thread Oshima, Scott
Suppose we have one field with one string abc-xxx.com When I query for abc-xxx.com it returns 0 hits. BUT when i query for something like xxx.com it returns results fine. not sure what lucene is doing with the dashes. i am using the default standardfilter, lowercasefilter, stopfilter and porte