Dear Solr Ninjas, We would like to run a query that returns two word phrases that appear in more than one document. So for e.g. take the string "Solr Ninja". Since it appears in more than one document in our Solr instance, the query should return that. The query should find all such phrases from all the documents in our Solr instance, by querying for two adjacent word combination (forming a phrase) in the documents that are in the Solr. These two adjacent word combinations should come from the documents in the Solr index.
Any ideas on how to write this query? Thanks.