Re: [NEWBIE] Creating context-relative URLs with Tomcat + Struts

2003-09-08 Thread Marco Tedone
Hi Jeff, DAMN!, two of the books I haven't got :) I bought Jakarta Struts from O'reilly and another one on JSP/Servlets/Web programming. I already wrote the user interfaces and the classes (I wrote a stateless EJB which performs both the indexing and the researching of the result) to run the searc

Re: Can't search using numbers

2003-09-08 Thread Erik Hatcher
Which Analyzer are you using? Look at the "Analysis" section of my article here: http://today.java.net/pub/a/today/2003/07/30/LuceneIntro.html It will help you construct a simple test to see what your Analyzer is or is not doing. Erik On Monday, September 8, 2003, at 12:55 PM, Onglatco, Da

Can't search using numbers

2003-09-08 Thread Onglatco, David
I am able to make text searches, but am unable to search for numbers. I did check my Analyzer class if numbers were included in the STOP-WORDS, but they weren't. Has anyone had this problem? Or does anyone have any suggestions? Any help would be immensely appreciated. Thanks. David O.

Re: [NEWBIE] Creating context-relative URLs with Tomcat + Struts

2003-09-08 Thread Jeff Linwood
Hi, I don't know of any books on just Lucene, but I wrote a chapter on Lucene in Professional Struts Applications. Since you're apparently using Struts, you might find it useful. Another book that has a chapter on Lucene is Professional JSP. One thing you should know about Lucene - it's not a re

Re: [NEWBIE] Creating context-relative URLs with Tomcat + Struts

2003-09-08 Thread Marco Tedone
Sorry Scott, I was under the flies of enthusiasm :) I'm trying to realize a simple web-site search functionality and I would like to use Lucene as index-search engine. BTW, does it exist any book on Lucene? Marco - Original Message - From: "Scott Farquhar" <[EMAIL PROTECTED]> To: "Lucen

Re: Unable to download Lucene source code

2003-09-08 Thread Mai Ngoc Thang
Try this: http://jakarta.apache.org/builds/jakarta-lucene/release/v1.3-rc1/ I have just downloaded from this and everything is OK, Cheers, Thangmn > Hello, > I am unable to download the source code from any of the links on > page > http://jakarta.apache.org/site/sourceindex.html > are the

wildcard search

2003-09-08 Thread Gregor Heinrich
Hi, when querying with a wildcard, e.g., "project*", QueryParser (v1.3rc2-dev) does seem to count the * as "at least one character" (RE=/.+/), i.e., the query finds documents containing "projection" and "projective" (no stemming involved) but not "project". Has anyone an explanation? Not sure if