Configuring a Form Runner eXist database
Deprecation
Removal
Rationale
Setup
Configuring full-text indexing in eXist-db
<collection xmlns="http://exist-db.org/collection-config/1.0">
<index>
<!-- Disable the standard full text index -->
<fulltext default="none" attributes="no"/>
<!-- Lucene index is configured below -->
<lucene>
<analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
<!-- We want to index the content of all form elements -->
<text match="//*"/>
</lucene>
</index>
</collection>Configuring Form Runner
Last updated