You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@lucene.apache.org by Jason Mawdsley <ja...@macadamian.com> on 2002/05/13 21:06:10 UTC

Using the UnStored Field() type

Hi-

If the field is tokenized and indexed, can I still search that field?

My code looks like this:

theDocument = new Document();
if ( 0 != textString.length() ) {
textField = Field.UnStored( FIELD_TEXT, textString );
theDocument.add( textField );
}

then I search it like this:

indexReader = IndexReader.open( "C:\\temp\\index_store" );
Term searchTermTiny = new Term( DocumentVisitor.FIELD_TEXT, "Syndeo" ); 
FuzzyQuery query = new FuzzyQuery( searchTermTiny );
IndexSearcher search = new IndexSearcher( indexReader );
Hits foundDocs = search.search( query );

I never get any results for the documents. Syndeo occures often.
Any ideas?

TIA

Jason

Jason Mawdsley ~ jason@macadamian.com
Software Designer ~ m_ a c a d a m i a n    t e c h n o l o g i e s

"Software experts for the world's leading technology companies."
http://www.macadamian.com

Because software development cycles should not end in tragedy.


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>