我创建了一个使用默认数据库爬虫的新索引。我无法让它索引我指定的 5 个模板上的所有字段。
我正在使用 IndexViewer 模块来检查上述字段。在可用字段中,它列出了我想要索引的所有字段,但仅索引以下字段 - _url、_group、_name 和 _tags。
我还编写了一些代码来测试索引字段,我得到了想要的结果。我只需要我的索引来包含指定模板上的所有字段。以下是我对索引的配置。
<index id="Articles" type="Sitecore.Search.Index, Sitecore.Kernel">
<param des="name">$(id)</param>
<param des="folder">__articles</param>
<Analyzer ref="search/analyzer"/>
<locations hint="list:AddCrawler">
<customindex type="Sitecore.Search.Crawlers.DatabaseCrawler, Sitecore.Kernel">
<Database>web</Database>
<Root>/sitecore/content/[websitehome]</Root>
<Tags>articles</Tags>
<IndexAllFields>true</IndexAllFields>
<include hint="list:IncludeTemplate">
<template1>{C4663677-909E-4C4D-AB3E-78AADBB36CF7}</template1>
<template2>{444D1797-1EA9-46F2-988D-2211CF926501}</template2>
<template3>{1A859C38-FFFA-4102-BF7F-9E670495C3AF}</template3>
<template4>{6EA89465-C6C4-4643-9589-188FBB180883}</template4>
<template5>{52F0AB89-E9C3-4D10-9242-ACB669841C41}</template5>
</include>
</customindex>
</locations>