Jackrabbit 索引配置白名单 (Magnolia CMS 5.5.5 Fulltextsearch)
Jackrabbit Indexing Config Whitelisting (Magnolia CMS 5.5.5 Fulltextsearch)
我想将哪些属性列入白名单 indexed/searched 并在 Magnolia 搜索的摘录中显示。
我正在更改我网站工作区中的 indexing_configuration.xml。
删除索引并重新启动 magnolia 没有任何改变...
现在我的 indexing_configuration.xml 里有这个(在其他东西旁边)
但这些是我想包含在我的 ecxcerpt 中的字符串属性,其余的应该被排除:
<index-rule nodeType="nt:hierarchyNode">
<property boost="10" useInExcerpt="true">introTitle</property>
<property boost="1.0" useInExcerpt="true">introAbstract</property>
<property boost="1.0" useInExcerpt="true">contentText</property>
<property boost="1.0" useInExcerpt="true">subText</property>
<property boost="10" useInExcerpt="true">title</property>
<!-- exclude jcr:* and mgnl:* properties -->
<property isRegexp="true" nodeScopeIndex="false" useInExcerpt="false">.*:.*</property>
</index-rule>
<index-rule nodeType="mgnl:contentNode">
<property boost="5" nodeScopeIndex="false" useInExcerpt="true">introTitle</property>
<property boost="2" nodeScopeIndex="false" useInExcerpt="true">introAbstract</property>
<property boost="2" nodeScopeIndex="false" useInExcerpt="true">contentText</property>
<property boost="2" nodeScopeIndex="false" useInExcerpt="true">subText</property>
<property boost="5" nodeScopeIndex="false" useInExcerpt="true">title</property>
<!-- exclude jcr:* and mgnl:* properties -->
<property isRegexp="true" nodeScopeIndex="false" useInExcerpt="false">.*:.*</property>
</index-rule>
我怎样才能让它按预期工作?感谢您的帮助..
最可能的原因是 Magnolia/JR 没有看到您的新配置。您是否更改了存储库配置(website
工作区中的 workspace.xml
)以将其指向新的索引配置?
默认值如下:
<SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
<param name="path" value="${wsp.home}/index" />
<!-- SearchIndex will get the indexing configuration from the classpath, if not found in the workspace home -->
<param name="indexingConfiguration" value="/info/magnolia/jackrabbit/indexing_configuration.xml"/>
你需要将它指向你的新文件。
也不确定为什么要根据 nt:hierarchyNode
或 mgnl:contentNode
设置索引,而不是使用更具体的 mgnl:page
/mgnl:component
我想将哪些属性列入白名单 indexed/searched 并在 Magnolia 搜索的摘录中显示。
我正在更改我网站工作区中的 indexing_configuration.xml。 删除索引并重新启动 magnolia 没有任何改变...
现在我的 indexing_configuration.xml 里有这个(在其他东西旁边) 但这些是我想包含在我的 ecxcerpt 中的字符串属性,其余的应该被排除:
<index-rule nodeType="nt:hierarchyNode">
<property boost="10" useInExcerpt="true">introTitle</property>
<property boost="1.0" useInExcerpt="true">introAbstract</property>
<property boost="1.0" useInExcerpt="true">contentText</property>
<property boost="1.0" useInExcerpt="true">subText</property>
<property boost="10" useInExcerpt="true">title</property>
<!-- exclude jcr:* and mgnl:* properties -->
<property isRegexp="true" nodeScopeIndex="false" useInExcerpt="false">.*:.*</property>
</index-rule>
<index-rule nodeType="mgnl:contentNode">
<property boost="5" nodeScopeIndex="false" useInExcerpt="true">introTitle</property>
<property boost="2" nodeScopeIndex="false" useInExcerpt="true">introAbstract</property>
<property boost="2" nodeScopeIndex="false" useInExcerpt="true">contentText</property>
<property boost="2" nodeScopeIndex="false" useInExcerpt="true">subText</property>
<property boost="5" nodeScopeIndex="false" useInExcerpt="true">title</property>
<!-- exclude jcr:* and mgnl:* properties -->
<property isRegexp="true" nodeScopeIndex="false" useInExcerpt="false">.*:.*</property>
</index-rule>
我怎样才能让它按预期工作?感谢您的帮助..
最可能的原因是 Magnolia/JR 没有看到您的新配置。您是否更改了存储库配置(website
工作区中的 workspace.xml
)以将其指向新的索引配置?
默认值如下:
<SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
<param name="path" value="${wsp.home}/index" />
<!-- SearchIndex will get the indexing configuration from the classpath, if not found in the workspace home -->
<param name="indexingConfiguration" value="/info/magnolia/jackrabbit/indexing_configuration.xml"/>
你需要将它指向你的新文件。
也不确定为什么要根据 nt:hierarchyNode
或 mgnl:contentNode
设置索引,而不是使用更具体的 mgnl:page
/mgnl:component