1

我创建了一个使用默认数据库爬虫的新索引。我无法让它索引我指定的 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>

4

3 回答 3

1

尝试使用Lukeall工具观察索引 - IndexViewer 可能不会显示未存储的字段。要使用 Lukeall,只需选择 C:\inetpub\wwwroot\Sitecore\Data\indexes__articles 文件夹,选中“只读”和“强制解锁”,然后单击“确定”。

于 2012-05-01T09:10:54.150 回答
1

要使 Lucene 存储索引值 -在字段定义上设置storageType="YES" 。

 <fieldMap type="Sitecore.ContentSearch.FieldMap, Sitecore.ContentSearch">
        <fieldNames hint="raw:AddFieldByFieldName">
          <field fieldName="_uniqueid" storageType="YES"
于 2015-09-07T12:46:04.963 回答
0

我想通了。该索引包括字段而不是它们的值。不确定这是否是索引的所需功能,但是当我查询它时,我会得到结果。

于 2012-05-01T13:43:49.177 回答