I want to search data in solr. I have a field which contains comma separated ids. How can I search for comma separated ids in solr? I have ids in an array for which I need the search like:
ids to search : [1,5]
ids in solr field: "1,2,3,4,5,6"
I want to search data in solr. I have a field which contains comma separated ids. How can I search for comma separated ids in solr? I have ids in an array for which I need the search like:
ids to search : [1,5]
ids in solr field: "1,2,3,4,5,6"
I get the correct result by using the or operator as mentioned by the @MathsLindh in comment. Thanks for responding. :)