We have a set number of known terms we want to match against. In Index: "term one" "term two" "term three"
I know how to match all terms of a user query against the index but we would like to know how/if we can match a user's query against all the terms in the index? Search Queries: "my search term" => 0 matches "my term search one" => 1 match ("term one") "some prefix term two" => 1 match ("term two") "one two three" => 0 matches I can only explain this is almost a reverse search??? I came across the following from ElasticSearch (http://www.elasticsearch.org/guide/reference/api/percolate/) and it sounds like this may accomplish the above but haven't tested. I was wondering if Solr had something similar or an alternative way of accomplishing this? Thanks