Difference between revisions of "Full-Text"

From BaseX Documentation
Jump to navigation Jump to search
m (→‎Indexes: Added "SET LANGUAGE DE")
m (→‎Indexes: Fixed code formatting of language option)
Line 35: Line 35:
 
The following options are available:  
 
The following options are available:  
  
* '''Language''': language-specific parsers wil be used; this option affects tokenization and stemming (if enabled). BaseX comes with built-in support for English and German. Additionally, other languages can be supported using stemmers from [http://lucene.apache.org/java/docs/index.html Lucene] or [http://snowball.tartarus.org Snowball]. If the corresponding JARs or classes are in the Java class-path, BaseX will automatically make use of them (SET LANGUAGE DE)
+
* '''Language''': language-specific parsers wil be used; this option affects tokenization and stemming (if enabled). BaseX comes with built-in support for English and German. Additionally, other languages can be supported using stemmers from [http://lucene.apache.org/java/docs/index.html Lucene] or [http://snowball.tartarus.org Snowball]. If the corresponding JARs or classes are in the Java class-path, BaseX will automatically make use of them (<code>SET LANGUAGE DE</code>)
 
* '''Support Wildcards''': a trie-based index can be applied to support wildcard searches (<code>SET WILDCARDS ON</code>)  
 
* '''Support Wildcards''': a trie-based index can be applied to support wildcard searches (<code>SET WILDCARDS ON</code>)  
 
* '''Stemming''': tokens are stemmed with the Porter Stemmer before being indexed (<code>SET STEMMING ON</code>)  
 
* '''Stemming''': tokens are stemmed with the Porter Stemmer before being indexed (<code>SET STEMMING ON</code>)  

Revision as of 15:16, 11 January 2011

Full-text is an important query feature for working with XML documents, and BaseX was the first query processor that fully supported the upcoming W3C XQuery Full Text 1.0 Recommendation. This page lists some singularities and extensions of the BaseX implementation.

Query Evaluation

BaseX offers different evaluation strategies for XQFT queries, the choice of which depends on the input data and the existence of a full text index. The query compiler tries to optimize and speed up queries by applying a full text index structure whenever possible and useful. Three evaluation strategies are available: the standard sequential database scan, a full-text index based evaluation and a hybrid one, combining both strategies (see "XQuery Full Text implementation in BaseX"). Query optimization and selection of the most efficient evaluation strategy is done in a full-fledged automatic manner. The output of the query optimizer indicates which evaluation plan is chosen for a specific query. It can be inspected by activating verbose querying (Command: SET VERBOSE ON) or opening the Query Info in the GUI. The message

Applying full-text index

suggests that the full-text index is applied to speed up query evaluation. A second message

Removing path with no index results

indicates that the index does not yield any results for the specified term and is thus skipped. If index optimizations are missing, it sometimes helps to give the compiler a second chance and try different rewritings of the same query.

Indexes

To support a wide variety of scenarios, the available full-text index can handle different combinations of the match options in XQuery Full Text. By default, most indexing options are disabled. The GUI dialog for creating new databases allows to choose the available options. On the command-line, the SET command has to be used before the full-text index is created, either by

  • create index fulltext or
  • set ftindex on; create db FILENAME.xml.

The following options are available:

  • Language: language-specific parsers wil be used; this option affects tokenization and stemming (if enabled). BaseX comes with built-in support for English and German. Additionally, other languages can be supported using stemmers from Lucene or Snowball. If the corresponding JARs or classes are in the Java class-path, BaseX will automatically make use of them (SET LANGUAGE DE)
  • Support Wildcards: a trie-based index can be applied to support wildcard searches (SET WILDCARDS ON)
  • Stemming: tokens are stemmed with the Porter Stemmer before being indexed (SET STEMMING ON)
  • Case Sensitive: tokens are indexed in case-sensitive mode (SET CASESEND ON)
  • Diacritics: diacritics are indexed as well (SET DIACRITICS ON)
  • TF/IDF Scoring: TF/IDF-based scoring values are calculated and stored in the index (SET SCORING 1/2; details see below)
  • Stopword List: a stop word list can be defined to reduce the number of indexed tokens (SET STOPWORDS FILENAME)

Caution: The index will only be applied if the activated options are also specified in the query:

Index Options: Case Sensitive, Stemming ON

Query 1 (wrong):

//*[text() contains text 'inform']

Query 2 (correct):

//*[text() contains text 'inform' using case sensitive using stemming]

Query 3 (correct):

declare ft-option using case sensitive using stemming;
//*[text() contains text 'inform']

Scoring

The XQuery Full Text Recommendation allows for the usage of scoring models and values within queries, with scoring being completely implementation defined. BaseX offers an efficient internal scoring model which can be easily extended to different application scenarios. Additionally, BaseX allows to store scoring values within the full-text index structure. Three scoring types are currently available, which can be adjusted with the SCORING property (Default: SET SCORING 0):

  • 0: A standard algorithm is applied, which considers the length of a term and its frequency in a single text node. This algorithm is always applied if no index exists, or if the index cannot be applied in a query.
  • 1: Standard TF/IDF algorithm, which treats document nodes as document units
  • 2: Each text node is treated as a document unit in the TF/IDF algorithm. This variant is recommendable for large XML files which only contain one document node.

Fuzzy Querying

In addition to the official recommendation, BaseX supports fuzzy querying. The XQFT grammar was enhanced by the FTMatchOption using fuzzy to allow for approximate searches in full texts. By default, the standard full-text index already supports the efficient execution of fuzzy searches.

Document 'doc.xml':

<doc>
   <a>foo bar</a>
   <a>foa bar</a>
   <a>faa bar</a>
 </doc>

Command: create db doc.xml; create index fullext

Query: xquery //a[text() contains text 'foo' using fuzzy]

Result: <a>foo bar</a> <a>foa bar</a>

Fuzzy search is based on the Levenshtein distance. The maximum number of allowed errors is calculated by dividing the token length of a specified query term by 4, preserving a minimum of 1 errors. A static error distance can be set by adjusting the LSERR property (default: SET LSERR 0). The query above yields two results as there is no error between the query term "foo" and the text node "foo bar", and one error between "foo" and "foa bar".

Functions

Some additional Full-text Functions have been added to BaseX to extend the official language recommendation with useful features, such as explicitly requesting the score value of an item, marking the hits of a full-text request, or directly accessing the full-text index with the default index options.