Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone tell me if I can associate a static index field for Liferay using the solr-web.plugin? Is there a way to define a static index in solr?

I need something similar to the following configuration in Nutch

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

This will add the field "source" as an index and its value as "nutch" to all documents in Nutch. Anything similar to this for Liferay + Solr?

share|improve this question

1 Answer

Not sure for Liferay configuration, however you can add a default value in the schema.xml which will be applied to documents.

<field name="source" type="string" indexed="true" stored="true" default="Nutch" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.