Is it possible to search within a previous hit list in SOLR? E.g. first search “hello”, then on the result list, user wants to search records containing “world”. Is it the same thing as searching hello AND world?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I believe so.
Alternately, you can use a filter query, e.g.
?q=hello&fq=worldThis probably isn’t the right solution in the “Hello world” case, but it may be an interesting example nonetheless.