That looks like the data in the index is incorrectly encoded. If the inserts into your index came in via HTTP GET and your Tomcat wasn't configured for UTF-8 at the time, I could see it going into the index corrupted. But I'm not sure if that's even possible (depends on Update)
Is it hard to re-create your index after that configuration change? If it's a quick thing to do, it may be worth doing again to eliminate as a possibility. -Todd Feak -----Original Message----- From: sunnyfr [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2008 9:05 AM To: solr-user@lucene.apache.org Subject: RE: Japonish language seems to don't work on solr 1.3 Hi Todd, It does definitly work better, it was the server.xml file, sorry I should have checked, but I still have a dodgy problem, it's like it doesn't encode it in the good way, Because if I'm looking for straight in the URL ... :8180/solr/video/select/?q=豐田真奈美 My result is : <response> <lst name="responseHeader"> <int name="status">0</int> <int name="QTime">0</int> <lst name="params"> <str name="q">豐田真奈美</str> </lst> </lst> <result name="response" numFound="0" start="0"/> </response> And if I look for : :8180/solr/video/select/?q=ALL My result is : <response> <lst name="responseHeader"> <int name="status">0</int> <int name="QTime">0</int> <lst name="params"> <str name="q">ALL</str> </lst> </lst> <result name="response" numFound="3" start="0"> <doc> <date name="created">2006-10-10T05:29:32Z</date> <str name="description_ja"> All Japan Women's Pro-wrestling <br /><br />WWWA Champion Title Match <br /><br />è±ç”°çœŸå¥ˆç¾Ž VS 井上京å <br /><br /> </str> <int name="id">813343</int> <str name="language">JA</str> <int name="rating_binrate">40</int> <arr name="spell"> <str>Toyota Manami VS Inoue Kyoko</str> </arr> <int name="stat_views">1421</int> <bool name="status_creative">false</bool> <bool name="status_official">false</bool> <date name="timestamp">2008-10-20T15:57:27.197Z</date> <str name="title_ja">Toyota Manami VS Inoue Kyoko</str> </doc> This : è±ç”°çœŸå¥ˆç¾Ž VS 井上京å Should be 豐田真奈美 An Idea ? Thanks a lot :) -- View this message in context: http://www.nabble.com/Japan-language-seems-to-don%27t-work-on-solr-1.3-tp20070938p20073108.html Sent from the Solr - User mailing list archive at Nabble.com.