Hi, I have some data indexed in two servers A and B.
This is how the data looks in schema.xml for datatype "text" <fieldType name="text" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/> <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateintegerParts="1" catenateWords="1" catenateintegers="1" catenateAll="0" splitOnCaseChange="1"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> <analyzer type="query"> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/> <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateintegerParts="1" catenateWords="0" catenateintegers="0" catenateAll="0" splitOnCaseChange="1"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType> I have two another dynamic field, which gets copied from the actual field <copyField source="*" dest="*Facet" /> <copyField source="idx_*" dest="text" /> This is the search string idx_ABCFacet:"XXX....... ABC DEF" In server A, I give a search on a multivalued string field containing . and the data is fetched fine, but the same search if I give in server B, no documents are fetched. This inspite the data being present in both the servers. I compared the schema file in both the servers. Both the file was same. I also compared the analyzer, both has the same one and the anlyzer we got is StandardAnalyzer. Still the search for that field works fine in one server but does not work in another server. We also checked the field in schema browser, there are also the fields looked same in both server A and B. Kindly provide a solution. -- View this message in context: http://lucene.472066.n3.nabble.com/Search-in-multivalued-string-field-does-not-work-tp3509458p3509458.html Sent from the Solr - User mailing list archive at Nabble.com.