hello,
before index the URL to a field in Solr, you can use java api(Solrj) and do
a test
if(URL=="....")
index on field1
else
index on field2
then use edismax to boost a specific field:
<requestHandler name="/select" class="solr.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
<int name="rows">10</int>
<str name="defType">edismax</str>
<str name="qf">
field1^5.0 field2^1.0
</str>
</requestHandler>
--
View this message in context:
http://lucene.472066.n3.nabble.com/solr-boosting-any-perticular-URL-tp4147657p4147864.html
Sent from the Solr - User mailing list archive at Nabble.com.