是否可以使用solr-web插件为Liferay提供静态索引字段?

时间:2012-07-20 05:13:06

标签: solr indexing liferay nutch

有人能告诉我是否可以使用solr-web.plugin为Liferay关联静态索引字段?有没有办法在solr中定义静态索引?

我需要类似于Nutch中的以下配置

<property> 
    <name>index.static</name> 
    <value>source:nutch</value> 
</property> 

这会将字段“source”添加为索引,将其值作为“nutch”添加到Nutch中的所有文档中。 Liferay + Solr有类似的东西吗?

1 个答案:

答案 0 :(得分:0)

不确定Liferay配置,但您可以在schema.xml中添加将应用于文档的默认值。

<field name="source" type="string" indexed="true" stored="true" default="Nutch" />