Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am indexing documents by Solr, which were scraped from the web. The documents contain HTML entities (such as £ or £). Mostly the documents contain central european characters. Is there any charfilter for this task? I know solr.MappingCharFilterFactory, but using this would mean, that I have to define the mappings myself. I would be happier with a shared solution maintained by a community. Thanks for your help!

share|improve this question
fifigyuri, you asked "Is there any charfilter for this task?" Let me get this straight: Do you want to convert accented chars to non-accented before indexing a document (that is like convert "állat" to "allat")? And you do not want to assemble and maintain a txt file of the char mapping? – bpgergo Jun 1 '11 at 16:07
@bpgergo, I have tackled the áóüőťďľšč... characters, for these MappingCharFilter is fine. I would like to have mappings for the HTMLentities. It means that ü or ü would be translated to ü. But probably, the simplest for that would be just to extend my mappings. Wanted to know whether, there aren't these cases already tackled for web specific texts/characters in Solr. If you know any such a solution, ready made, please share. Thanks! – fifigyuri Jun 2 '11 at 8:36
I see. Unfortunately i don't know such ready made mapping. – bpgergo Jun 3 '11 at 12:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.