I've been trying to use ExternalFileField in ApacheSolr for external scoring.
I'm using the example config. Basically I want to set scores for items using their ids.
I set the fieldType idRankFile and field idRank in schema.xml:
<fieldType name="idRankFile" keyField="id" defVal="0" stored="true" indexed="true" class="solr.ExternalFileField" valType="pfloat" />
<field name="idRank" type="idRankFile" indexed="true" stored="true" />
And made a file called external_idRank in /solr/example/solr/data with the following content:
F8V7067-APL-KIT = 1.0
IW-02 = 10.0
9885A004 = 100.0
SOLR1000 = 1000.0
(This assigns idRank values for various ids)
Now I run the following query :
This should basically return the results in order of their idRanks. However, it does not.
Any ideas?