Email Definition in StandardTokenizer.jj

2007-05-02 Thread Winton Davies
Hey guys, Does someone who makes commits want to fix the EMAIL definition in StandardTokenizer.jj Its a not very well known exception to the naming process, that you can use a "+" in the middle of the email name, and the delivery agent sends the email to the prefixing name, but keeps the ori

Straight TF-IDF cosine similarity?

2006-08-29 Thread Winton Davies
Hi All, I'm scratching my head - can someone tell me which class implements an efficient multiple term TF.IDF Cosine similarity scoring mechanism? There is clearly the single TermScorer - but I can't find the class that would do a bucketed TF.IDF cosine - i.e. fill an accumulator with the tf

RE: Apache Lucene 2.0

2006-07-04 Thread Winton Davies
Hi, Replace the line query = QueryParser.parse(queryString, "contents", analyzer); in lucene/src/jsp/results.jsp with QueryParser qp = new QueryParser("contents", analyzer); query = qp.parse(queryString); Something changed in the QP api - this reflects the new call. I'm n