为 Sitecore 创建 Lucene 索引会导致“无法找到添加方法”错误

发布于 2024-09-15 07:59:54 字数 852 浏览 5 评论 0原文

我有一个 sitecore 6.2 站点,除了系统索引之外没有 lucene 索引。我尝试添加这个新的简单索引:

<index id="videoIndex" type="Sitecore.Search.Index, Sitecore.Kernel" >
  <param desc="name">$(id)</param>
  <param desc="folder">IndexFolder</param>
  <Analyzer ref="search/analyzer" />
  <templates hint="list:AddTemplate">
    <template>{854D2F45-3261-45A8-9E52-64D96B5D54E5}</template>
  </templates>
  <fields hint="raw:AddField">
    <field target="category">Categories</field>
    <field target="date">__updated</field>
  </fields>
</index>

添加此索引后,浏览到 sitecore 站点上的任何页面都会出现以下错误:

Could not find add method: AddTemplate (type: Sitecore.Search.Index)

使用 lucene 2.3.1.3,.NET 3.5。

I have a sitecore 6.2 site that had no lucene indexes besides the system index. I tried to add this new simple index:

<index id="videoIndex" type="Sitecore.Search.Index, Sitecore.Kernel" >
  <param desc="name">$(id)</param>
  <param desc="folder">IndexFolder</param>
  <Analyzer ref="search/analyzer" />
  <templates hint="list:AddTemplate">
    <template>{854D2F45-3261-45A8-9E52-64D96B5D54E5}</template>
  </templates>
  <fields hint="raw:AddField">
    <field target="category">Categories</field>
    <field target="date">__updated</field>
  </fields>
</index>

Once I add this, browsing to any page on the sitecore site gives the following error:

Could not find add method: AddTemplate (type: Sitecore.Search.Index)

Using lucene 2.3.1.3, .NET 3.5.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平安喜乐 2024-09-22 07:59:54

元素的“type”属性引用 Sitecore.Search.Index 类,该类不包含 AddTemplate 等方法> 和AddField。看来您应该引用 Sitecore.Data.Indexing.Index 来代替。查看 web.config 中的

希望这有帮助。

The 'type' attribute of the <index/> element references Sitecore.Search.Index class, which doesn't contain methods like AddTemplate and AddField. It seems you should reference Sitecore.Data.Indexing.Index instead. Take a look at <index id="system" ... /> in web.config.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文