Re: Indexing terms only

2004-12-22 Thread Mike Snare
Thanks for correcting me. I use the reader version -- hence my confusion. -Mike On Wed, 22 Dec 2004 11:53:31 -0500, Erik Hatcher <[EMAIL PROTECTED]> wrote: > > On Dec 22, 2004, at 11:36 AM, Mike Snare wrote: > > Whether or not the text is stored in the index is a different concern > > that how

Re: Indexing terms only

2004-12-22 Thread Mike Snare
I've never used the german analyzer, so I don't know what stop words it defines/uses. Someone else will have to answer that. Sorry On Wed, 22 Dec 2004 17:45:17 +0100, DES <[EMAIL PROTECTED]> wrote: > I actually use Field.Text(String,String) to add documents to my index. Maybe > I do not understa

Re: Indexing terms only

2004-12-22 Thread Erik Hatcher
On Dec 22, 2004, at 11:36 AM, Mike Snare wrote: Whether or not the text is stored in the index is a different concern that how it is analyzed. If you want the text to be indexed, and not stored, then use the Field.Text(String, String) method Correction: Field.Text(String, String) is a stored field

Re: Indexing terms only

2004-12-22 Thread DES
I actually use Field.Text(String,String) to add documents to my index. Maybe I do not understand the way an analyzer works, but I thought that all German articles (der, die, das etc) should be filtered out. However if I use Luke to view my index, the original text is completely stored in a field

Re: Indexing terms only

2004-12-22 Thread Mike Snare
Whether or not the text is stored in the index is a different concern that how it is analyzed. If you want the text to be indexed, and not stored, then use the Field.Text(String, String) method or the appropriate constructor when adding a field to the Document. You'll need to also store a referen

Indexing terms only

2004-12-22 Thread DES
hi i need to index my text so that index contains only tokenized stemmed words without stopwords etc. The text ist german, so I tried to use GermanAnalyzer, but it stores whole text, not terms. Please give me a tip how to index terms only. Thanks! DES