hi i have product inventory data in solr index I would like to boost or sort results by using some popularity.
for instance SOLR index has field named Title. Some docs with tile like iphone 4 - white iphone 3 - white blackberry torch I would like to boost docs where title contains word "iphone" can i use partial titles in external file field? here is schema ----------------- <fieldType name="titleFile" keyField="title" defVal="0" stored="true" indexed="true" class="solr.ExternalFileField" valType="pfloat" /> <field name="rank" type="titleFile" indexed="true" stored="true" /> titleFile contains ------------------ iphone=15 blackberry=13 samsung=12 now when results are obtained for search term like "phone" i would like to show user phones having title iphone first then , blackberry then samsung I tried but does not seem to work. Any thoughts? -- View this message in context: http://lucene.472066.n3.nabble.com/external-file-field-partial-data-match-in-key-field-tp3368547p3368547.html Sent from the Solr - User mailing list archive at Nabble.com.