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
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
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