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 using solrj 1.4. My solrj doesn't index properly the documents in utf-16 encoding. I guess when it tries to convert to unicode, it replaces the problematic utf-16 surrogate keys with unicode replaceable character U+FFFD. Can anyone guide me on how to configure solrj 1.4 to index/search for utf-16 documents as well as utf-8 ?

share|improve this question

1 Answer

up vote 0 down vote accepted

The Solr index is in utf-8 (Why don't International Characters Work). In order to be able to search using other encodings you can always perform the translation in your software interfacing Solr.

share|improve this answer
Conversion from utf-16 to utf-8 is always 100% successful. Is there any fool proof method or api available ? – user911084 Aug 25 '11 at 15:16
Fool proof I don't know, but CharsetEncoder is typically handy. – Johan Sjöberg Aug 25 '11 at 15:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.