nutch field problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:21:51Zhttp://stackoverflow.com/feeds/question/1010661http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1010661/nutch-field-problem0nutch field problemShore2009-06-18T03:39:14Z2009-06-18T05:42:18Z
<p>I was using something like:</p>
<pre><code>Field notdirectory = new Field("notdirectory","1", Field.Store.NO, Field.Index.UN_TOKENIZED);
</code></pre>
<p>and queries like "notdirectory:1" can be processed quite well all the time.</p>
<p>But recently I've changed the "Field.Store.NO, Field.Index.UN_TOKENIZED" to index a non-numeric string:</p>
<pre><code>Field stateField = new Field("state","irn_" + state, Field.Store.NO, Field.Index.UN_TOKENIZED);
</code></pre>
<p>and queries like "state:irn_CA" can never fetch any results any more,even though I watch through hadoop logs that "irn_CA" is added to "state" field in fact.</p>
<p>So I doubt for Fields that satisfy "Field.Store.NO, Field.Index.UN_TOKENIZED",only numeric Fields can searchable,but I didn't see any documents about that.</p>
<p>So what's the true reason for this?</p>
http://stackoverflow.com/questions/1010661/nutch-field-problem/1010949#10109491Answer by Shashikant Kore for nutch field problemShashikant Kore2009-06-18T05:42:18Z2009-06-18T05:42:18Z<p>I think, you are using StandardAnalyzer for parsing the input query, which will tokenize your input query "irn_CA" into two tokens - "irn" and "CA". Since the index has "irn_CA" as single token, it won't match.</p>
<p>Try using <a href="http://lucene.apache.org/java/2%5F4%5F0/api/org/apache/lucene/analysis/KeywordAnalyzer.html" rel="nofollow">KeywordAnalyzer</a> for while searching. It will generate single token for the query string and match the indexed token correctly.</p>