I'm not able to query on binary data field. I created the following field with binary field type.
<field name="binarycheck" type="binary" indexed="true" stored="true" />
Field type definition is the default one.
<fieldtype name="binary" class="solr.BinaryField"/>
I executed the following command to index into Solr.
curl 'http://localhost:4983/solr/update?commit=true' -H 'Content-type:application/json' -d '[{"id":"pd_3006","binarycheck":{"set":10101000}}]'
When I'm querying with the id
field, I'm able to get the document.
Even I tried with `
http://'localhost':4983/solr/collection1/select?q=binarycheck:10101000&wt=json&indent=true
`
But it's not giving any result. Please help
yes
to aneither ... or
question is a bit hard to understand :) – cheffe