为 Sitecore 创建 Lucene 索引会导致“无法找到添加方法”错误
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
元素的“type”属性引用Sitecore.Search.Index
类,该类不包含AddTemplate
等方法> 和AddField
。看来您应该引用Sitecore.Data.Indexing.Index
来代替。查看 web.config 中的
。希望这有帮助。
The 'type' attribute of the
<index/>
element referencesSitecore.Search.Index
class, which doesn't contain methods likeAddTemplate
andAddField
. It seems you should referenceSitecore.Data.Indexing.Index
instead. Take a look at<index id="system" ... />
in web.config.Hope this helps.