Re: Chinese language search in SOLR 3.6.1

2013-10-23 Thread Poornima Jay
Hi Rajani, The string field type is not analyzed. But that is not the case for text_chinese field type for which is  ChineseTokenizerFactory and  ChineseFilterFactory is added for index and query analysis. Below check the schema and the fields how it is defined in my above mail. Thanks, Poornim

Re: Chinese language search in SOLR 3.6.1

2013-10-22 Thread Rajani Maski
String field will work for any case when you do exact key search. text_chinese also should work if you are simply searching with exact string"676767667". Well, the best way to find an answer to this query is by using solr analysis tool : http://localhost:8983/solr/#/collection1/analysis Enter your

Re: Chinese language search in SOLR 3.6.1

2013-10-22 Thread Poornima Jay
Hi Rajani, Below is the configured in my schema.                                                                                                      if I search with the query q=simple:总评价 it works but doesn't work if I search with q=simple:676767667. If the field is

Re: Chinese language search in SOLR 3.6.1

2013-10-22 Thread Rajani Maski
Hi Poornima, Your statement : "It works fine with the chinese strings but not working with product code or ISBN even though the fields are defined as string" is confusing. Did you mean that the product code and ISBN fields are of type text_Chinese? Is it first or second: or What do you r

Chinese language search in SOLR 3.6.1

2013-10-22 Thread Poornima Jay
Hi, Did any one face a problem for chinese language in SOLR 3.6.1. Below is the analyzer in the schema.xml file.                                                                                                             It works fine with the chinese strings but not working with pr