CFP for Surge Scalability Conference 2010

2010-07-02 Thread Jason Dixon
A quick reminder that there's one week left to submit your abstract for this year's Surge Scalability Conference. The event is taking place on Sept 30 and Oct 1, 2010 in Baltimore, MD. Surge focuses on case studies that address production failures and the re-engineering efforts that led to victor

Re: search for a string which begins with a '$' character

2010-07-02 Thread Nathaniel Auvil
I am using this analyzer: @Analyzer(impl = org.apache.lucene.analysis.standard.StandardAnalyzer.class) "$" is not inlcluded in the STOP_WORDS for this analyzer. Is there somewhere else i should be looking? When i use Luke with the standardAnalyzer, it does not parse the query. Is there a way to

Re: search for a string which begins with a '$' character

2010-07-02 Thread Grant Ingersoll
What analyzer are you using? Did you check that it is making it through your analyzer? -Grant On Jul 1, 2010, at 2:56 PM, Nathaniel Auvil wrote: > i am trying to search for a value which begins with a '$' or even sometimes > '$$'. '$' is not listed as a special character and no matter what i

Re: Lucene and Chinese language

2010-07-02 Thread kafka0102
you can choose ik : http://code.google.com/p/ik-analyzer/ for this problem. It generates a better token result than standard and CJK. And, you can use its IKQueryParser instead of queryparser. It generates "and queries" instead of " phrase queries". On 2010年07月01日 20:47, Robert Muir wrote: