This is an automated email from the ASF dual-hosted git repository. snagel pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nutch.git
commit a5df63a3d644e90fb881a0f16c8f29d9320d1de3 Author: Jorge Luis Betancourt <[email protected]> AuthorDate: Tue Oct 23 22:57:03 2018 +0200 NUTCH-2658 Adding the fields required by the index-links plugin to the schema --- conf/schema.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conf/schema.xml b/conf/schema.xml index 2b095e5..57a44ac 100644 --- a/conf/schema.xml +++ b/conf/schema.xml @@ -398,6 +398,10 @@ <field name="lastModified" type="date" stored="true" indexed="false"/> <field name="date" type="tdate" stored="true" indexed="true"/> + <!-- fields for index-links --> + <field name="inlinks" type="url" stored="true" indexed="true" multiValued="true"/> + <field name="outlinks" type="url" stored="true" indexed="true" multiValued="true"/> + <!-- fields for languageidentifier plugin --> <field name="lang" type="string" stored="true" indexed="true"/>
