Re: How to enable Unicode Support in Solr

2010-09-06 Thread Walter Underwood
On Sep 6, 2010, at 7:59 AM, Yonik Seeley wrote: > On Mon, Sep 6, 2010 at 10:30 AM, Walter Underwood > wrote: >> On Sep 6, 2010, at 1:49 AM, Lance Norskog wrote: >> >>> 1) The XML file must include the UTF-8 encoding metadata in the first line. >> >> If it requires that, it isn't a legal XML p

Re: How to enable Unicode Support in Solr

2010-09-06 Thread Yonik Seeley
On Mon, Sep 6, 2010 at 10:30 AM, Walter Underwood wrote: > On Sep 6, 2010, at 1:49 AM, Lance Norskog wrote: > >> 1) The XML file must include the UTF-8 encoding metadata in the first line. > > If it requires that, it isn't a legal XML parser. The encoding declaration is > optional and it defaults

Re: How to enable Unicode Support in Solr

2010-09-06 Thread Walter Underwood
On Sep 6, 2010, at 1:49 AM, Lance Norskog wrote: > 1) The XML file must include the UTF-8 encoding metadata in the first line. If it requires that, it isn't a legal XML parser. The encoding declaration is optional and it defaults to UTF-8. wunder -- Walter Underwood

Re: FW: How to enable Unicode Support in Solr

2010-09-06 Thread Lance Norskog
encoding problems almost drove me crazy :) Good luck! Darx Oman wrote: Hi amier try saving the xml file encoding as UTF-8 On Mon, Sep 6, 2010 at 11:08 AM, Darx Darx wrote: Date: Mon, 6 Sep 2010 10:10:25 +0500 Subject: How to enable Unicode Support in Solr From: am...@techarete.com

Re: FW: How to enable Unicode Support in Solr

2010-09-06 Thread Darx Oman
Hi amier try saving the xml file encoding as UTF-8 On Mon, Sep 6, 2010 at 11:08 AM, Darx Darx wrote: > > > > Date: Mon, 6 Sep 2010 10:10:25 +0500 > > Subject: How to enable Unicode Support in Solr > > From: am...@techarete.com > > > To: solr-user@lucene.apache

Re: How to enable Unicode Support in Solr

2010-09-06 Thread Peter Karich
Hi, Solr is only able to handle unicode (UTF-8). Make really sure that you push it into the index in the correct encoding. See my (accepted ;-)) answer: http://stackoverflow.com/questions/3086367/how-to-view-the-xml-documents-sent-to-solr/3088515#3088515 Regards, Peter. > I have an index that

Re: How to enable Unicode Support in Solr

2010-09-06 Thread Grijesh.singh
solr supports UTF8 char set so use any ofthe MappingCharFilterFactory/ UnicodeNormalizationFilterFactory/ASCIIFoldingFilterFactory for searching and indexing of that type of data - Grijesh -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-enable-Unicode-Support

How to enable Unicode Support in Solr

2010-09-05 Thread Amier Haider
I have an index that takes textual description and places it in the index. I am creating an XML file and passing it to Solr for indexing, but Solr is not saving Unicode characters as it is showing question mark for those characters. I want to know that how to enable Unicode Support for Solr index.