solr - Solarium filter query with OR -


i want create filter query solarium, using lot of ors. sql equivalent

select * mytable myvalue in (1,3,5,6,9);   

the string have created filter query this:

spr:1 or spr:3 or spr:5 or spr:6 or spr:9   

when execute query, error thrown:

exception: solr http error: ok (400) {"error":{"msg":"undefined field text","code":400}}    

there no doubt field exists in schema , contains correct values. using solr admin, can manually execute filter query , expected results.

can point me in right direction please? naturally i'd happy post more info, if needed.

it might old question, solution doing this:

spr:(1 or 3 or 5 or 6...) 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -