Re: Question regarding adding documents

2008-01-07 Thread Daniel Noll
On Tuesday 08 January 2008 00:52:35 Developer Developer wrote: > here is another approach. > > StandardAnalyzer st = new StandardAnalyzer(); > StringReader reader= new StringReader("text to index..."); > TokenStream stream = st.tokenStream("content", reader); > > Then use the Field

Re: Question regarding adding documents

2008-01-07 Thread Developer Developer
here is another approach. StandardAnalyzer st = new StandardAnalyzer(); StringReader reader= new StringReader("text to index..."); TokenStream stream = st.tokenStream("content", reader); Then use the Field constructor such as *Field

Re: Question regarding adding documents

2008-01-07 Thread Doron Cohen
Or, very similar, wrap the 'real' analyzer A with your analyzer that delegates to A but also keeps the returned tokens, possibly by using a CachingTokenFilter. On Jan 7, 2008 7:11 AM, Daniel Noll <[EMAIL PROTECTED]> wrote: > On Monday 07 January 2008 11:35:59 chris.b wrote: > > is it possible to

Re: Question regarding adding documents

2008-01-06 Thread Daniel Noll
On Monday 07 January 2008 11:35:59 chris.b wrote: > is it possible to add a document to an index and, while doing so, get the > terms in that document? If so, how would one do this? :x My first thought would be: when adding fields to the document, use the Field constructors which accept a TokenSt