Re: index special characters solr

2012-06-05 Thread Jack Krupansky
Thanks. I'm sure someone else will have the same issue at some point. -- Jack Krupansky -Original Message- From: KPK Sent: Tuesday, June 05, 2012 9:51 PM To: solr-user@lucene.apache.org Subject: Re: index special characters solr Thanks Jack for your help! I found my mistake, r

Re: index special characters solr

2012-06-05 Thread KPK
Thanks Jack for your help! I found my mistake, rather than classifying those special characters as ALPHA , I classified it as a DIGIT. Also I missed the same entry for search analyzer. So probably that was the reason for not getting relevant results. I spent a lot of time figuring this out. So I'l

Re: index special characters solr

2012-06-05 Thread KPK
Thanks for your reply! I tried using the types field in WordDelimiterFilterFactory wherein I was passing a text file which contained % $ as alphabets. But even then it didnt get indexed and neither did it show up in search results. Am I missing something? Thanks, Kushal -- View this message in c

Re: index special characters solr

2012-05-31 Thread Jack Krupansky
Special characters are filtered out of (most) "text" fields, but are preserved in "string" fields. String fields might suit your needs, but are inconvenient for keyword searching. You may be able to use the "types" option of the WordDelimiterFilterFactory to pass in a custom character type tab