Need to index small binary strings with SOLR but failed to do so. Actually I'm trying to search on hashes like SHA-1, MD5 and things like UUID.
Have binary field intended to be indexed.
<field name="fi" type="binary" indexed="true" stored="true" required="false" multiValued="false" />
Have binary type definition.
<fieldtype name="binary" class="solr.BinaryField"/>
Why any try to select on this field even with fi:*
request cannot find anything? Any alternative to my approach?