我的数据库中包含与其关联的标记的URL,如下所示。
url : tag1(score) tag2(score)
例如:
www.w3schools.com: html(4.5) php(3.5) etc..
www.php.net: php(5) etc...
现在,我想将这些链接存储在带有加权标签的solr中,并使它们可搜索,
如何在solr中完成? `
答案 0 :(得分:1)
您可以使用索引时间每场增强,如下所示:
<add>
<doc>
<field name="URL">stackoverflow.com</field>
<field name="tag" boost="11.0">html</field>
<field name="tag" boost="9.0">php</field>
</doc>
</add>
文档可用here。