Actually I am facing one problem in solr search. There is an author field in which I stored two value like "deep kumar-singh" and "deep kumar singh". When I search the author:"deep kumar-singh" It returns both results. But I want only one result to be the exact one.
Here is my field description:
<field name="author" type="text_general" indexed="true" stored="true" multiValued="true"/>
I created authorFacet Field to get author facet.
<field name="authorFacet" type="string_ci" indexed="true" stored="false" multiValued="true"/>
When I choosed authorFacet it returns count 1 for both author Like:
deep kumar-singh(1)
deep kumar singh(1)
I want only one results to be exact.
How Can I get this?, Any suggestion would be very helpfull.