Re: Alphanumeric model ids

2006-04-25 Thread Jeremy Hanna
Thanks Chris, it works like a champ now. I had thought I looked at the queries themselves with toString but in any case, the queries actually work now. I didn't realize that Lucene was customizable on so many levels - when you create the analyzer, when you create the index, when you perfo

Re: Alphanumeric model ids

2006-04-25 Thread Chris Hostetter
I bet that if you look at the toString() of the query you get back from your query parser, you'll see that the non numeric part numbers have been stemmed. You took the right steps when you indexed the field as UN_TOKENIZED, but at query time your query parser doesn't know about that -- take a loo