I am trying to find the documents which hit this example:
q=text:"credit" NOTIN "credit card"
for that query I want to get all the documents which contain the term "credit" but not as part of the phrase "credit card".
so:
I don't want to get the documents which include just "credit card".
I want to get the documents which include just "credit".
I want to get the documents which include "credit" but not as part of credit card.
for example:
doc1 text: "I want to buy with my credit in my card"
doc2 text: "I want to buy with my credit in my credit card"
doc3 text: "I want to buy with my credit card"
The documents returned should be:
doc1, doc2
I can't find nothing about NOTIN operator implementation in SOLR docs.