I am using Solr 5.5.0 and currently the application is searching with the "AND" operator without it being specified. For example: I search for programmer developer and it gives me the result of the files with the words programmer and developers. The configuration is done in the solrconfig.xml
<str name="mm">100%</str>
But I need now to change it to make it use of both operators :
- when I write programmer AND developer and gives me the results of the files that contains both words;
- when I write programmer OR developer and gives me the results of the files that contains one or another word;
Can you please advice me on what should I do and how? I went through the information on the internet but couldn't figure it out.