If my index contains three boolean fields: a, b and c...
I would like to search for: "a=True, b=False, c=True" and SOLR should return all entries, and their score should represent how good the whole query is matched.
e.g.
a=T, b=F, c=T, score=1.0
a=T, b=T, c=T, score=0.6
a=T, b=T, c=F, score=0.5
is that possible ?