: Hello, I am using the latest Solr4j to index content. When I look at : that content in the Solr Admin web utility I see weird characters like : this: : : http://brockwine.com/images/solrglyphs.png : : When I look at the text in the MySQL DB those chars appear to just be : plain hyphens. The MySQL table character set is utf8 and the collation : is utf8.
What do you mean by "Solr4j" ? more then likely, there is a character encoding problem somewhere between your database and Solr ... solr expects utf8 when you index content, but justbecause it's utf8 in your database doesn't mean the code reading from your database and sending it to Solr is using utf8 along the way ... knowing exactly waht that code looks like is neccessary to understand what might be happening here. -Hoss