Proximity and Percentage match search in Lucene

2009-04-25 Thread Radha Sreedharan
What I need is the following : > If my document field is ( ab,bc,cd,ef) and Search tokens are (ab,bc,cd). > > Given the following : > I should get a hit even if all of the search tokens aren't present > If the tokens are found they should be found within a distance x of > each other ( proximi

Re: Using Payloads

2009-04-25 Thread Murat Yakici
Here is what I am doing, not so magical... There are two classes, an analyzer and an a TokenStream in which I can inject my document dependent data to be stored as payload. private PayloadAnalyzer panalyzer = new PayloadAnalyzer(); private class PayloadAnalyzer extends Analyzer {