View Single Post
Old 01-22-2008, 10:00 AM   #2 (permalink)
teknomage1
Jack of all trades
 
teknomage1's Avatar
 
Join Date: Feb 2005
Location: Los Angeles
Posts: 598
teknomage1 is on a distinguished road
Send a message via AIM to teknomage1
Here's some stuff for the java lucene faq that seem promising:
Quote:
Originally Posted by java lucene docs
  • The term is in a field that was not tokenized during indexing and therefore, the entire content of the field was considered as a single term. Re-index the documents and make sure the field is tokenized.
  • The term you are searching is a stop word that was dropped by the analyzer you use. For example, if your analyzer uses the StopFilter, a search for the word 'the' will always fail (i.e. produce no hits).
Maybe there's a stop filter on numeric stings? Or maybe the normalizer is dropping numeric strings from the title index.
__________________
Stop intellectual property from infringing on me
teknomage1 is offline   Reply With Quote