* '''Diacritics''': diacritics are indexed as well (<code>SET DIACRITICS true</code>).
* '''Stopword List''': a stop word list can be defined to reduce the number of indexed tokens (<code>SET STOPWORDS [filename]</code>).
* {{Mark|Removed in Version 7.2.23}}: '''TF/IDF Scoring''': TF/IDF-based scoring values are calculated and stored in the index (<code>SET SCORING 0/1/2</code>). This feature was removed in favor of the internal scoring model; [[#Scoring|see below]] for more details.* {{Mark|Removed in Version 7.2.23}}: '''Support Wildcards''': a trie-based index can be applied to support wildcard searches (<code>SET WILDCARDS true</code>). This option was discarded, as the index now supports both wildcard and fuzzy queries.
==Languages==
different application scenarios.
{{Mark|Updated in Version 7.2.23:}}
TF/IDF scoring was discarded in favor of the internal scoring model, which proved to yield better results for XML documents in most of the cases. The score of a full-text result is calculated by taking the number of found terms and their frequency in a single text node into account. Terms will be ranked higher if they are found in short texts.
=Changelog=
===Version 7.2.23===
* Removed: The trie index, which was specialized on wildcard queries, was removed. The fuzzy index now supports both wildcard and fuzzy queries.