Re: How to see results of an analyzer

2010-12-23 Thread Lahiru Samarakoon
Hi Umesh, Thanks for the descriptive answer. Using your method I can test my custom analyzers without creating an index. Best Regards, Lahiru

Re: How to see results of an analyzer

2010-12-22 Thread Umesh Prasad
For small texts, you can call tokenstream of Analyzer directly. That way you don't have to crate an index. http://lucene.apache.org/java/3_0_3/api/core/org/apache/lucene/analysis/Analyzer.html http://lucene.apache.org/java/3_0_3/api/core/org/apache/lucene/analysis/TokenStream.html Analyzer analy

Re: How to see results of an analyzer

2010-12-22 Thread Lahiru Samarakoon
Hi Ian, Luke works for me. Thanks, Lahiru.

Re: How to see results of an analyzer

2010-12-22 Thread Ian Lea
I don't believe you can see anything in real time. Luke will show you pretty much anything about an index or see http://www.gossamer-threads.com/lists/lucene/java-user/112180 for a way to feed text into an analyzer and see what comes out. -- Ian. On Wed, Dec 22, 2010 at 12:00 PM, Lahiru Samara