I'm using Solr to index records consisting of binary fields. I've specified the fields in schema.xml as such:
<field name="id" type="binary" indexed="true" stored="true" required="true" multiValued="false" />
I'm able to add records to the index via a POST request, encoding and sending the fields as Base64 Strings. The size of the collection's data directory is growing so I know it is storing something; however, when doing a match all query (q=*:*) I strangely get some documents found but none returned, e.g.:
"response": {
"numFound": 364047,
"start": 0,
"maxScore": 1,
"docs": []
}
Has anybody any idea what's causing this or how it can be resolved?
Thanks