Hi All - Can you please help me out on the multi-word synonyms with Solr 4.3.1.
I am using the synonyms as below .... test1,test2 => movie1 cinema,movie2 cinema,movie3 cinema I am able to success with the above syntax .... like - if I search for words like test1 or test2 then right hand side multi-word values are shown. But - I have a synonyms like below - multi-word on both the side left-hand and right-hand... test1 test, test2 test, test3 test =>movie1 cinema,movie2 cinema,movie3 cinema With the above left-hand multi-word format - not working as expected .... means .... Here below is the configuration I am using on query analyzer ... <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true" tokenizerFactory="solr.KeywordTokenizerFactory"/> Please Help me ....