I need to find a solution to index my documents base on a dictionary. This dictionary contains 3 million phrases. I have one big challenge and that is: I need to index document base on this dictionary only with a consideration that words permutation is also accepted. For example : I have a phrase in my dictionary as "beautiful big garden" ,but if the document contains "big beautiful garden" it should be index as "beautiful big garden". I am thinking a lot but I couldn't find a normal solution within solr, except using synonym filter and word permutation such as below: beautiful big garden => garden big beautiful ,beautiful garden big, big beautiful garden ,... but this is not possible because my dictionary contains 3 millions of phrases and many of these phrases have more than 5 words so calculation 5! and make synonym filter is not possible. Is there any one who can help me with a proper idea, I am a beginner in solr, there should be a way for that.
-- View this message in context: http://lucene.472066.n3.nabble.com/how-to-index-document-with-multiple-words-phrases-and-words-permutation-tp4224919.html Sent from the Solr - User mailing list archive at Nabble.com.