我在 CF10 文档中读到,属性“FieldBoost”已添加到 CFIndex,以指定哪些字段在 Solr 的评分中应该更重要。
但是,它似乎不仅没有按预期工作,实际上还导致整个索引操作完全失败!我在 Adobe 论坛上看到其他帖子提到完全相同的问题,但没有可用的回复或解决方案。
我正在运行 CF10 更新 11。
以下代码有效并索引了 14,000 条记录:
<cfindex collection = "MyCollection"
action = "refresh"
type = "custom"
query = "Local.MyContent"
key = "ID"
title = "Name"
body = "Name,Description"
>
但是,如果我添加 FieldBoost 值,则没有错误并且索引操作似乎运行正确,但是该集合现在包含零记录:
<cfindex collection = "MyCollection"
action = "refresh"
type = "custom"
query = "Local.MyContent"
key = "itemID"
title = "Name"
body = "Name,Description"
fieldBoost = "title"
>
有没有人有这个工作?