I have country field in my solr DB to represent the countries related to this item. the list of countries are PIPE separated
ex:
<arr name="country">
<str>France | United Kingdom | Norway | UAE </str>
</arr>
and another item like
<arr name="country">
<str>Australia | Belgium | Argentina </str>
</arr>
now i need to search for all items related to United Kingdom OR Belgium
i tried this
http://127.0.0.1:8888/solr/MyDb/select/?q=*:*&version=2.2&start=0&rows=10&indent=on&facet=true&fq=country:United+Kingdom+OR+Belgium
but this didn't work! could you please guide me to how to do this search?
Thanks for your help