I have results for doing a search in Solr. My Solr has a multi-valued field similar to this document below:
<int name="id">2166324592435</int>
...others fields
<arr name="Series">
<str>The Walking Dead<\str>
<str>Game of Thrones<\str>
<\arr>
The multi-valued Series field has the Tv series referenced by the document. In the example above, my document talks about The Walking Dead and Game of Thrones. I can have documents with one, two or more series, or even without series.
I want to search in Solr. I want to give the series that I want, and Solr should return the documents that speak of my request. I tried, but I could not do it. I tried the following:
q=series:The Walking Dead or series:Game of Thrones or ...&wt=json
I think I'm wrong. What is the right way to do this?
Thanks in advance
Thiago
source
share