Difference between revisions of "Options"
(→GZIP) |
(→GZIP) |
||
(40 intermediate revisions by 3 users not shown) | |||
Line 12: | Line 12: | ||
* The {{Code|.basex}} [[Configuration#Configuration Files|configuration file]] is parsed by every new local BaseX instance. It contains all global options. Local options can be specified at the end of the file after the {{Code|Local Options}} comment: | * The {{Code|.basex}} [[Configuration#Configuration Files|configuration file]] is parsed by every new local BaseX instance. It contains all global options. Local options can be specified at the end of the file after the {{Code|Local Options}} comment: | ||
− | < | + | <syntaxhighlight lang="perl"> |
# General Options | # General Options | ||
DEBUG = false | DEBUG = false | ||
Line 19: | Line 19: | ||
# Local Options | # Local Options | ||
CHOP = false | CHOP = false | ||
− | </ | + | </syntaxhighlight> |
− | * Initial values for global options can also be specified via system properties, which can e.g. be passed on with the [ | + | * Initial values for global options can also be specified via system properties, which can e.g. be passed on with the [https://docs.oracle.com/en/java/javase/11/tools/java.html -D flag] on command line, or using [https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/System.html#setProperty(java.lang.String,java.lang.String) System.setProperty()] before creating a BaseX instance. The specified keys need to be prefixed with {{Code|org.basex.}}. An example: |
− | < | + | <syntaxhighlight lang="perl"> |
java -Dorg.basex.CHOP=false -cp basex.jar org.basex.BaseX -c"get chop" | java -Dorg.basex.CHOP=false -cp basex.jar org.basex.BaseX -c"get chop" | ||
CHOP: false | CHOP: false | ||
− | </ | + | </syntaxhighlight> |
* If using the Mac OS X packaged application then global options can be set within the Info.plist file within the Contents folder of the application package. For example: | * If using the Mac OS X packaged application then global options can be set within the Info.plist file within the Contents folder of the application package. For example: | ||
− | < | + | <syntaxhighlight lang="xml"> |
<key>JVMOptions</key> | <key>JVMOptions</key> | ||
<array> | <array> | ||
<string>-Dorg.basex.CHOP=false</string> | <string>-Dorg.basex.CHOP=false</string> | ||
</array> | </array> | ||
− | </ | + | </syntaxhighlight> |
* In a [[Web Application]], the default can be adjusted in the {{Code|web.xml}} file as follows: | * In a [[Web Application]], the default can be adjusted in the {{Code|web.xml}} file as follows: | ||
− | < | + | <syntaxhighlight lang="xml"> |
<context-param> | <context-param> | ||
<param-name>org.basex.chop</param-name> | <param-name>org.basex.chop</param-name> | ||
<param-value>false</param-value> | <param-value>false</param-value> | ||
</context-param> | </context-param> | ||
− | </ | + | </syntaxhighlight> |
* In XQuery, local options can be set via option declarations and [[XQuery Extensions#Pragmas|pragmas]]. | * In XQuery, local options can be set via option declarations and [[XQuery Extensions#Pragmas|pragmas]]. | ||
Line 421: | Line 421: | ||
| '''Summary''' | | '''Summary''' | ||
|Specifies the maximum length of a single [[Logging|log message]]. | |Specifies the maximum length of a single [[Logging|log message]]. | ||
+ | |} | ||
+ | |||
+ | ===LOGTRACE=== | ||
+ | |||
+ | {| width='100%' | ||
+ | |- | ||
+ | | width='120' | '''Signature''' | ||
+ | |{{Code|LOGTRACE [boolean]}} | ||
+ | |- | ||
+ | | '''Default''' | ||
+ | |{{Code|true}} | ||
+ | |- | ||
+ | | '''Summary''' | ||
+ | |If BaseX is running as [[Web Application]], trace output (generated via {{Code|fn:trace}}, {{Function|Profiling|prof:dump}} and similar functions) is written to the [[Logging|database logs]]. If this option is disabled, trace output will be redirected to standard error, as it is known from the standalone version of BaseX. | ||
|} | |} | ||
Line 444: | Line 458: | ||
===GZIP=== | ===GZIP=== | ||
− | |||
− | |||
{| width='100%' | {| width='100%' | ||
Line 456: | Line 468: | ||
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |Jetty provides a [https://www.eclipse.org/jetty/documentation/current/gzip-filter.html Gzip handler] for dynamically uncompressing requests and compressing responses. This feature can be enabled if Jetty is started via the [[Web Application|BaseX HTTP Server]]: |
− | |||
* The option can also be enabled on [[Command-Line Options#HTTP Server|command line]] via <code>-g</code>. | * The option can also be enabled on [[Command-Line Options#HTTP Server|command line]] via <code>-g</code>. | ||
* It cannot be assigned via the {{Code|web.xml}} file, as it will be evaluated before the configuration files are parsed. | * It cannot be assigned via the {{Code|web.xml}} file, as it will be evaluated before the configuration files are parsed. | ||
+ | * In addition to the [https://github.com/eclipse/jetty.project/blob/7cc552013eb4d05cb603ba0bc85d176c97957cd4/jetty-server/src/main/java/org/eclipse/jetty/server/handler/gzip/GzipHandler.java#L187-L211 Jetty defaults] (GET requests, exclusion of binaries, MSIE 6.0, etc.), POST and PUT requests are supported. | ||
|} | |} | ||
Line 496: | Line 508: | ||
===RESTXQERRORS=== | ===RESTXQERRORS=== | ||
− | |||
− | |||
{| width='100%' | {| width='100%' | ||
Line 508: | Line 518: | ||
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | |Reports parsing errors in XQuery modules in the RESTXQ directory | + | |Reports parsing errors in XQuery modules in the RESTXQ directory and returns the full error message and stack trace to the client. By default, this option is enabled. In a production environment, it can be disabled to suppress errors that should not be seen by the user of an API (the full error information can still be looked up in the database logs). See [[RESTXQ#Error Handling|RESTXQ Error Handling]] for more details. |
|} | |} | ||
Line 761: | Line 771: | ||
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | |Many XML documents include whitespaces that have been added to improve readability. This option controls the [ | + | |Many XML documents include whitespaces that have been added to improve readability. This option controls the [https://www.w3.org/TR/REC-xml/#sec-white-space white-space processing mode] of the XML parser: |
* With the default value {{Code|true}}, leading and trailing whitespaces from text nodes will be chopped and all empty text nodes will be discarded. | * With the default value {{Code|true}}, leading and trailing whitespaces from text nodes will be chopped and all empty text nodes will be discarded. | ||
* The flag should be turned off if a document contains [[Full-Text#Mixed Content|mixed content]]. | * The flag should be turned off if a document contains [[Full-Text#Mixed Content|mixed content]]. | ||
Line 768: | Line 778: | ||
In the following example document, the whitespaces in the text nodes of the {{Code|text}} element will not be chopped: | In the following example document, the whitespaces in the text nodes of the {{Code|text}} element will not be chopped: | ||
− | < | + | <syntaxhighlight lang="xml"> |
<xml> | <xml> | ||
<title> | <title> | ||
Line 775: | Line 785: | ||
<text xml:space="preserve">To <b>be</b>, or not to <b>be</b>, that is the question.</text> | <text xml:space="preserve">To <b>be</b>, or not to <b>be</b>, that is the question.</text> | ||
</xml> | </xml> | ||
− | </ | + | </syntaxhighlight> |
It is recommendable to additionally assign <code>indent=no</code> to the {{Option|SERIALIZER}} option; otherwise the serialized documents will automatically be indented. | It is recommendable to additionally assign <code>indent=no</code> to the {{Option|SERIALIZER}} option; otherwise the serialized documents will automatically be indented. | ||
|} | |} | ||
Line 980: | Line 990: | ||
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | |Specifies the maximum length | + | |Specifies the maximum length for strings to be stored in [[Indexes|index structures]]. The value of this option will be assigned once to a new database, and can only be changed by creating a new database or doing a [[Commands#OPTIMIZE|full optimization]]. |
|} | |} | ||
Line 1,119: | Line 1,129: | ||
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |If a text file with stop words is specified, frequently used terms contained in that file will be ignored when a full-text index is created. A stopword list may decrease the size of the full text index and speed up your queries. See [[Indexes#Full-Text Index|Full-Text Index]] for more details. |
|} | |} | ||
Line 1,168: | Line 1,178: | ||
* Commas in values must be duplicated. | * Commas in values must be duplicated. | ||
* Variables may optionally be introduced with a leading dollar sign. | * Variables may optionally be introduced with a leading dollar sign. | ||
− | * If a variable uses a namespace different to the default namespace, it can be specified with the [http://www.jclark.com/xml/xmlns.htm Clark Notation] or [ | + | * If a variable uses a namespace different to the default namespace, it can be specified with the [http://www.jclark.com/xml/xmlns.htm Clark Notation] or [https://www.w3.org/TR/xquery-30/#id-basics Expanded QName Notation]. |
This option can also be used on [[Command-Line Options#BaseX Standalone|command line]] with the flag <code>-b</code>. | This option can also be used on [[Command-Line Options#BaseX Standalone|command line]] with the flag <code>-b</code>. | ||
|- | |- | ||
Line 1,176: | Line 1,186: | ||
* <code>a=1,,2</code> binds the value {{Code|1,2}} to the variable $a | * <code>a=1,,2</code> binds the value {{Code|1,2}} to the variable $a | ||
* <code>{URI}a=x</code> binds the value {{Code|x}} to the variable $a with the namespace {{Code|URI}}. | * <code>{URI}a=x</code> binds the value {{Code|x}} to the variable $a with the namespace {{Code|URI}}. | ||
− | * In the following [[Commands#Command_Scripts| Command Script]], the value {{Code|hello world!}} is bound to the variable $GREETING: | + | * In the following [[Commands#Command_Scripts| Command Script]], the value {{Code|hello world!}} is bound to the variable {{Code|$GREETING}}: |
− | < | + | <syntaxhighlight lang="xquery"> |
SET BINDINGS GREETING="hello world!" | SET BINDINGS GREETING="hello world!" | ||
XQUERY declare variable $GREETING external; $GREETING | XQUERY declare variable $GREETING external; $GREETING | ||
− | </ | + | </syntaxhighlight> |
|} | |} | ||
Line 1,191: | Line 1,201: | ||
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|50}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
Line 1,202: | Line 1,212: | ||
|} | |} | ||
− | === | + | ===UNROLLLIMIT=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|UNROLLLIMIT}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|5}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |This option controls the unroll limit: |
+ | * Loops with few iterations are ''unrolled'' by the XQuery compiler to enable further optimizations. | ||
+ | * If the limit is increased, more optimizations will take place, but the memory consumption and compile time will increase. | ||
+ | * See [[XQuery Optimizations#Loop Unrolling|Loop Unrolling]] for more details. | ||
|} | |} | ||
− | === | + | ===ENFORCEINDEX=== |
− | |||
− | |||
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|ENFORCEINDEX [boolean]}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|false}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |Enforces index rewritings in path expressions. See [[Indexes#Enforce Rewritings|Enforce Rewritings]] for details. |
− | |||
− | |||
|} | |} | ||
− | === | + | ===COPYNODE=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|COPYNODE [boolean]}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|true}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |When creating new nodes in XQuery via [https://www.w3.org/TR/xquery-31/#id-constructors Node Constructors], copies of all enclosed nodes will be created, and the copied nodes get new node identities. As a result, the following query yields <code>false</code>: |
+ | <syntaxhighlight lang="xquery"> | ||
+ | let $a := <a/> | ||
+ | let $b := <b>{ $a }</b> | ||
+ | return $b/a is $a | ||
+ | </syntaxhighlight> | ||
+ | This step can be very expensive and memory consuming. If the option is disabled, child nodes will only be linked to the new parent nodes, and the upper query returns <code>true</code>.<br>The option should be used carefully as it changes the semantics of XQuery. It should preferably be used in [[XQuery Extensions#Database Pragmas|Pragmas]]. | ||
|} | |} | ||
− | === | + | ===TAILCALLS=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|TAILCALLS}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|256}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |Specifies how many stack frames of [https://en.wikipedia.org/wiki/Tail_call tail-calls] are allowed on the stack at any time. When this limit is reached, tail-call optimization takes place and some call frames are eliminated. The feature can be turned off by setting the value to {{Code|-1}}. |
|} | |} | ||
− | === | + | ===WITHDB=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|WITHDB}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
Line 1,273: | Line 1,288: | ||
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | |By default, | + | |By default, resources specified via [[Databases#XML Documents|fn:doc]] and [[Databases#XML Documents|fn:collection]] are looked up both in the database and in the file system. If you always use {{Function|Database|db:open}} to access databases, it is recommendable to disable this option: |
+ | * No locks will be created for the two functions (see [[Transaction Management#Limitations|limitations of database locking]] for more details). | ||
+ | * Access to local and external resources will be faster, as the database lookup will be skipped. | ||
|} | |} | ||
− | === | + | ===DEFAULTDB=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|DEFAULTDB}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|false}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |If this option is turned on, paths specified in the [[Databases#XML Documents|fn:doc]] and [[Databases#XML Documents|fn:collection]] functions will first be resolved against a database that has been opened in the global context outside the query (e.g. by the {{Command|OPEN}} command). If the path does not match any existing resources, it will be resolved as described in the article on [[Databases#Access Resources|accessing database resources]]. |
|} | |} | ||
− | === | + | ===FORCECREATE=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|FORCECREATE [boolean]}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|false}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |By activating this option, database instances will be created with the XQuery functions [[Databases#XML Documents|fn:doc]] and [[Databases#XML Documents|fn:collection]]. |
|} | |} | ||
− | === | + | ===CHECKSTRINGS=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|CHECKSTRINGS [boolean]}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|true}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |By default, characters from external sources that are invalid in XML will trigger an error. If the option is set to <code>false</code>, these characters will be replaced with the Unicode replacement character <code>FFFD</code> (�). The option affects [[Java Bindings]] and string conversion and input functions such as [[Archive Module#archive:create|archive:create]], [[Archive Module#archive:extract-text|archive:extract-text]], [[Archive Module#archive:update|archive:update]], and [[ZIP Module#zip:text-entry|zip:text-entry]]. |
|} | |} | ||
− | === | + | ===WRAPJAVA=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|WRAPJAVA [mode]}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|some}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |Defines the way how values that result from Java code invocation will be converted to XQuery items. Allowed values: {{Code|none}}, {{Code|all}}, {{Code|some}}, {{Code|instance}}, and {{Code|void}}. See [[Java_Bindings#Conversion to XQuery|Java Bindings]] for further details. |
|} | |} | ||
− | === | + | ===LSERROR=== |
{| width='100%' | {| width='100%' | ||
|- | |- | ||
| width='120' | '''Signature''' | | width='120' | '''Signature''' | ||
− | |{{Code| | + | |{{Code|LSERROR [error]}} |
|- | |- | ||
| '''Default''' | | '''Default''' | ||
− | |{{Code| | + | |{{Code|0}} |
|- | |- | ||
| '''Summary''' | | '''Summary''' | ||
− | | | + | |This option specifies the maximum Levenshtein error for fuzzy full-text matching. By default, if {{Code|0}} is assigned, the error value is calculated dynamically. See [[Full-Text#Fuzzy_Querying|Fuzzy Querying]] for more details. |
|} | |} | ||
− | =Serialization Options= | + | ===RUNQUERY=== |
− | + | ||
− | ===SERIALIZE=== | + | {| width='100%' |
+ | |- | ||
+ | | width='120' | '''Signature''' | ||
+ | |{{Code|RUNQUERY [boolean]}} | ||
+ | |- | ||
+ | | '''Default''' | ||
+ | |{{Code|true}} | ||
+ | |- | ||
+ | | '''Summary''' | ||
+ | |Specifies if a query will be executed or parsed only. This option can also be changed on [[Command-Line Options#BaseX Standalone|command line]] via <code>-R</code>. | ||
+ | |} | ||
+ | |||
+ | ===RUNS=== | ||
+ | |||
+ | {| width='100%' | ||
+ | |- | ||
+ | | width='120' | '''Signature''' | ||
+ | |{{Code|RUNS [num]}} | ||
+ | |- | ||
+ | | '''Default''' | ||
+ | |{{Code|1}} | ||
+ | |- | ||
+ | | '''Summary''' | ||
+ | |Specifies how often a query will be evaluated. The result is serialized only once, and the measured times are averages of all runs. This option can also be changed on [[Command-Line Options#BaseX Standalone|command line]] via <code>-r</code>. | ||
+ | |} | ||
+ | |||
+ | =Serialization Options= | ||
+ | |||
+ | ===SERIALIZE=== | ||
{| width='100%' | {| width='100%' | ||
Line 1,433: | Line 1,478: | ||
===FULLPLAN=== | ===FULLPLAN=== | ||
− | |||
− | |||
{| width='100%' | {| width='100%' | ||
Line 1,479: | Line 1,522: | ||
* Please take in mind that no backup will be created from your original files. | * Please take in mind that no backup will be created from your original files. | ||
* The serialization options can be controlled via the {{Option|EXPORTER}} option. | * The serialization options can be controlled via the {{Option|EXPORTER}} option. | ||
− | |} | + | |} |
+ | |||
+ | ===MAXSTAT=== | ||
+ | |||
+ | {| width='100%' | ||
+ | |- | ||
+ | | width='120' | '''Signature''' | ||
+ | |{{Code|MAXSTAT [num]}} | ||
+ | |- | ||
+ | | '''Default''' | ||
+ | |{{Code|30}} | ||
+ | |- | ||
+ | | '''Summary''' | ||
+ | |Specifies the maximum number of index occurrences printed by the {{Command|INFO INDEX}} command. | ||
+ | |} | ||
+ | |||
+ | =Changelog= | ||
+ | |||
+ | ;Version 9.7 | ||
+ | * Updated: {{Option|GZIP}}: Support for POST and PUT requests. | ||
− | + | ;Version 9.6 | |
+ | * Added: {{Option|UNROLLLIMIT}}, {{Option|WRAPJAVA}} | ||
− | + | ;Version 9.5 | |
− | + | * Updated: {{Option|INLINELIMIT}}: default reduced to 50. | |
− | + | * Updated: {{Option|RESTXQERRORS}}: additionally suppress stack trace in HTTP response | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | ;Version 9.4 | |
+ | * Added: {{Option|LOGTRACE}} | ||
;Version 9.3 | ;Version 9.3 | ||
Line 1,514: | Line 1,570: | ||
;Version 8.5 | ;Version 8.5 | ||
− | |||
* Added: {{Option|CACHETIMEOUT}}, {{Option|LOGPATH}} | * Added: {{Option|CACHETIMEOUT}}, {{Option|LOGPATH}} | ||
* Updated: {{Option|AUTHMETHOD}}: {{Code|custom}} value added. | * Updated: {{Option|AUTHMETHOD}}: {{Code|custom}} value added. | ||
;Version 8.4 | ;Version 8.4 | ||
− | |||
* Added: {{Option|TOKENINDEX}}, {{Option|TOKENINCLUDE}} | * Added: {{Option|TOKENINDEX}}, {{Option|TOKENINCLUDE}} | ||
* Added: {{Option|SPLITSIZE}} (replacing <code>INDEXSPLITSIZE</code> and <code>FTINDEXSPLITSIZE</code>) | * Added: {{Option|SPLITSIZE}} (replacing <code>INDEXSPLITSIZE</code> and <code>FTINDEXSPLITSIZE</code>) | ||
Line 1,525: | Line 1,579: | ||
;Version 8.3 | ;Version 8.3 | ||
− | |||
* Added: {{Option|CACHERESTXQ}}, {{Option|TEXTINCLUDE}}, {{Option|ATTRINCLUDE}}, {{Option|FTINCLUDE}}, {{Option|ARCHIVENAME}} | * Added: {{Option|CACHERESTXQ}}, {{Option|TEXTINCLUDE}}, {{Option|ATTRINCLUDE}}, {{Option|FTINCLUDE}}, {{Option|ARCHIVENAME}} | ||
;Version 8.2 | ;Version 8.2 | ||
− | |||
* Removed: <code>EVENTPORT</code>, <code>CACHEQUERY</code> | * Removed: <code>EVENTPORT</code>, <code>CACHEQUERY</code> | ||
;Version 8.1 | ;Version 8.1 | ||
− | |||
* Added: {{Option|IGNORECERT}}, {{Option|RESTPATH}} | * Added: {{Option|IGNORECERT}}, {{Option|RESTPATH}} | ||
;Version 8.0 | ;Version 8.0 | ||
− | |||
* Added: {{Option|MIXUPDATES}}, {{Option|AUTOOPTIMIZE}}, {{Option|AUTHMETHOD}}, {{Option|XINCLUDE}} | * Added: {{Option|MIXUPDATES}}, {{Option|AUTOOPTIMIZE}}, {{Option|AUTHMETHOD}}, {{Option|XINCLUDE}} | ||
* Updated: {{Option|PROXYPORT}}: default set to 0; will be ignored. {{Option|PROXYHOST}}, {{Option|NONPROXYHOSTS}}: empty strings will be ignored. | * Updated: {{Option|PROXYPORT}}: default set to 0; will be ignored. {{Option|PROXYHOST}}, {{Option|NONPROXYHOSTS}}: empty strings will be ignored. | ||
Line 1,553: | Line 1,603: | ||
;Version 7.7 | ;Version 7.7 | ||
− | |||
* Added: {{Option|ADDCACHE}}, {{Option|CHECKSTRINGS}}, {{Option|FTINDEXSPLITSIZE}}, {{Option|INDEXSPLITSIZE}} | * Added: {{Option|ADDCACHE}}, {{Option|CHECKSTRINGS}}, {{Option|FTINDEXSPLITSIZE}}, {{Option|INDEXSPLITSIZE}} | ||
;Version 7.6 | ;Version 7.6 | ||
− | |||
* Added: {{Option|GLOBALLOCK}} | * Added: {{Option|GLOBALLOCK}} | ||
* Added: store local options in configuration file after {{Code|# Local Options}} comments. | * Added: store local options in configuration file after {{Code|# Local Options}} comments. | ||
;Version 7.5 | ;Version 7.5 | ||
− | |||
* Added: options can now be set via system properties | * Added: options can now be set via system properties | ||
* Added: a pragma expression can be used to locally change database options | * Added: a pragma expression can be used to locally change database options | ||
Line 1,570: | Line 1,617: | ||
;Version 7.3 | ;Version 7.3 | ||
− | |||
* Updated: {{Option|KEEPALIVE}}, {{Option|TIMEOUT}}: default values changed | * Updated: {{Option|KEEPALIVE}}, {{Option|TIMEOUT}}: default values changed | ||
* Removed: {{Code|WILDCARDS}}; new index supports both fuzzy and wildcard queries | * Removed: {{Code|WILDCARDS}}; new index supports both fuzzy and wildcard queries | ||
Line 1,576: | Line 1,622: | ||
;Version 7.2 | ;Version 7.2 | ||
− | |||
* Added: {{Option|PROXYHOST}}, {{Option|PROXYPORT}}, {{Option|NONPROXYHOSTS}}, {{Option|HTMLOPT}} | * Added: {{Option|PROXYHOST}}, {{Option|PROXYPORT}}, {{Option|NONPROXYHOSTS}}, {{Option|HTMLOPT}} | ||
* Updated: {{Option|TIMEOUT}}: ignore timeout for admin users | * Updated: {{Option|TIMEOUT}}: ignore timeout for admin users | ||
;Version 7.1 | ;Version 7.1 | ||
− | |||
* Added: {{Option|ADDRAW}}, {{Option|MAXLEN}}, {{Option|MAXCATS}}, {{Option|UPDINDEX}} | * Added: {{Option|ADDRAW}}, {{Option|MAXLEN}}, {{Option|MAXCATS}}, {{Option|UPDINDEX}} | ||
* Updated: {{Option|BINDINGS}} | * Updated: {{Option|BINDINGS}} | ||
;Version 7.0 | ;Version 7.0 | ||
− | |||
* Added: {{Option|SERVERHOST}}, {{Option|KEEPALIVE}}, {{Option|AUTOFLUSH}}, {{Option|QUERYPATH}} | * Added: {{Option|SERVERHOST}}, {{Option|KEEPALIVE}}, {{Option|AUTOFLUSH}}, {{Option|QUERYPATH}} |
Revision as of 12:35, 17 June 2022
This page is linked from the Getting Started Section.
The options listed on this page influence the way how database commands are executed and XQuery expressions are evaluated. Two kinds of options exist:
- Global Options are valid for all BaseX instances in the same JVM. This is particularly relevant if you are working with the client/server architecture.
- Local options (all remaining ones) are specific to a client or session.
Values of options are either strings, numbers or booleans. Options are static and not bound to a single operation (for example, the next command). Various ways exist to access and change options:
- The current value of an option can be requested with the
GET
command. Local options can be changed viaSET
(all global options, except forDEBUG
, can only be changed at startup time). If an option is of type boolean, and if no value is specified, its current value will be inverted.
- The
.basex
configuration file is parsed by every new local BaseX instance. It contains all global options. Local options can be specified at the end of the file after theLocal Options
comment:
# General Options
DEBUG = false
...
# Local Options
CHOP = false
- Initial values for global options can also be specified via system properties, which can e.g. be passed on with the -D flag on command line, or using System.setProperty() before creating a BaseX instance. The specified keys need to be prefixed with
org.basex.
. An example:
java -Dorg.basex.CHOP=false -cp basex.jar org.basex.BaseX -c"get chop"
CHOP: false
- If using the Mac OS X packaged application then global options can be set within the Info.plist file within the Contents folder of the application package. For example:
<key>JVMOptions</key>
<array>
<string>-Dorg.basex.CHOP=false</string>
</array>
- In a Web Application, the default can be adjusted in the
web.xml
file as follows:
<context-param>
<param-name>org.basex.chop</param-name>
<param-value>false</param-value>
</context-param>
- In XQuery, local options can be set via option declarations and pragmas.
If options are changed by operations in the GUI, the underlying commands will be listed in the Info View.
Contents
Global Options
Global options are constants. They can only be set in the configuration file or via system properties (see above). One exception is the DEBUG option, which can also be changed at runtime by users with admin permissions.
General Options
DEBUG
Signature | DEBUG [boolean]
|
Default | false
|
Summary | Sends internal debug info to STDERR. This option can be turned on to get additional information for development and debugging purposes. It can also be triggered on command line via -d .
|
DBPATH
Signature | DBPATH [path]
|
Default |
|
Summary | Points to the directory in which all databases are located. |
LOGPATH
Signature | LOGPATH [path]
|
Default | .logs
|
Summary | Points to the directory in which all log files are stored. Relative paths will be resolved against the DBPATH directory.
|
REPOPATH
Signature | REPOPATH [path]
|
Default | {home}/repo
|
Summary | Points to the Repository, in which all XQuery modules are located. |
LANG
Signature | LANG [language]
|
Default | English
|
Summary | Specifies the interface language. Currently, seven languages are available: 'English', 'German', 'French', 'Dutch', 'Italian', 'Japanese', and 'Vietnamese'. |
LANGKEY
Signature | LANGKEY [boolean]
|
Default | false
|
Summary | Prefixes all texts with the internal language keys. This option is helpful if BaseX is translated into another language, and if you want to see where particular texts are displayed. |
FAIRLOCK
Signature | FAIRLOCK [boolean]
|
Default | false
|
Summary | Defines the locking strategy:
|
CACHETIMEOUT
Signature | CACHETIMEOUT [seconds]
|
Default | 3600
|
Summary | Specifies how many seconds the results of queries, which have been queued by the asynchronously executed, will be cached in main memory. |
Client/Server Architecture
HOST
Signature | HOST [host]
|
Default | localhost
|
Summary | This host name is used by the client when connecting to a server. This option can also be changed when running the client on command line via -n .
|
PORT
Signature | PORT [port]
|
Default | 1984
|
Summary | This port is used by the client when connecting to a server. This option can also be changed when running the client on command line via -p .
|
SERVERPORT
Signature | SERVERPORT [port]
|
Default | 1984
|
Summary | This is the port the database server will be listening to. This option can also be changed when running the server on command line via -p .
|
USER
Signature | USER [name]
|
Default | empty |
Summary | Represents a user name, which is used for accessing the server or an HTTP service:
|
PASSWORD
Signature | PASSWORD [password]
|
Default | empty |
Summary | Represents a password, which is used for accessing the server:
|
AUTHMETHOD
Signature | AUTHMETHOD [method]
|
Default | Basic |
Summary | Specifies the default authentication method, which will be used by the HTTP server for negotiating credentials. Allowed values are Basic , Digest , and Custom :
|
SERVERHOST
Signature | SERVERHOST [host|ip]
|
Default | empty |
Summary | This is the host name or ip address the server is bound to. If the option is set to an empty string (which is the default), the server will be open to all clients. |
PROXYHOST
Signature | PROXYHOST [host]
|
Default | empty |
Summary | This is the host name of a proxy server. If the value is an empty string, it will be ignored. |
PROXYPORT
Signature | PROXYPORT [port]
|
Default | 0
|
Summary | This is the port number of a proxy server. If the value is set to 0 , it will be ignored.
|
NONPROXYHOSTS
Signature | NONPROXYHOSTS [hosts]
|
Default | empty |
Summary | This is a list of hosts that should be directly accessed. If the value is an empty string, it will be ignored. |
IGNOREHOSTNAME
Signature | IGNOREHOSTNAME [boolean]
|
Default | false
|
Summary | If this option is enabled, hostnames of certificates will not be verified. Use IGNORECERT to completely disable certificate verification.
|
IGNORECERT
Signature | IGNORECERT [boolean]
|
Default | false
|
Summary | This option can be turned on to ignore untrusted certificates when connecting to servers. Use IGNOREHOSTNAME to suppress only the hostname verification.
|
TIMEOUT
Signature | TIMEOUT [seconds]
|
Default | 30
|
Summary | Specifies the maximum time a transaction triggered by a client may take. If an operation takes longer than the specified number of seconds, it will be aborted. Active update operations will not be affected by this timeout, as this would corrupt the integrity of the database. The timeout is deactivated if the timeout is set to 0 . It is ignored for operations with admin permissions.
|
KEEPALIVE
Signature | KEEPALIVE [seconds]
|
Default | 600
|
Summary | Specifies the maximum time a client will be remembered by the server. If there has been no interaction with a client for a longer time than specified by this timeout, it will be disconnected. Running operations will not be affected by this option. The keepalive check is deactivated if the value is set to 0 .
|
PARALLEL
Signature | PARALLEL [number]
|
Default | 8
|
Summary | Denotes the maximum allowed number of parallel transactions:
|
LOG
Signature | LOG [boolean]
|
Default | true
|
Summary | Turns Logging of server operations and HTTP requests on/off. This option can also be changed when running the server on command line via -z .
|
LOGMSGMAXLEN
Signature | LOGMSGMAXLEN [length]
|
Default | 1000
|
Summary | Specifies the maximum length of a single log message. |
LOGTRACE
Signature | LOGTRACE [boolean]
|
Default | true
|
Summary | If BaseX is running as Web Application, trace output (generated via fn:trace , prof:dump and similar functions) is written to the database logs. If this option is disabled, trace output will be redirected to standard error, as it is known from the standalone version of BaseX.
|
HTTP Services
Most HTTP options are defined in the jetty.xml
and web.xml
configuration files in the webapp/WEB-INF
directory. Some additional BaseX-specific options exist that will be set before the web server is started:
WEBPATH
Signature | WEBPATH [path]
|
Default | {home}/webapp
|
Summary | Points to the directory in which all the Web Application contents are stored, including XQuery, Script, RESTXQ and configuration files:
|
GZIP
Signature | GZIP [boolean]
|
Default | false
|
Summary | Jetty provides a Gzip handler for dynamically uncompressing requests and compressing responses. This feature can be enabled if Jetty is started via the BaseX HTTP Server:
|
RESTXQPATH
Signature | RESTXQPATH [path]
|
Default | empty |
Summary | Points to the directory which contains the RESTXQ modules of a web application. Relative paths will be resolved against the WEBPATH directory.
|
PARSERESTXQ
Signature | PARSERESTXQ
|
Default | 3
|
Summary | Timeout after which the RESTXQ directory will be parsed for changes:
See RESTXQ Preliminaries for more details. |
RESTXQERRORS
Signature | RESTXQERRORS
|
Default | true
|
Summary | Reports parsing errors in XQuery modules in the RESTXQ directory and returns the full error message and stack trace to the client. By default, this option is enabled. In a production environment, it can be disabled to suppress errors that should not be seen by the user of an API (the full error information can still be looked up in the database logs). See RESTXQ Error Handling for more details. |
RESTPATH
Signature | RESTPATH [path]
|
Default | empty |
Summary | Points to the directory which contains XQuery files and command scripts, which can be evaluated via the REST run operation. Relative paths will be resolved against the WEBPATH directory.
|
HTTPLOCAL
Signature | HTTPLOCAL [boolean]
|
Default | false
|
Summary | By default, if BaseX is run as Web Application, the database server instance will be started in addition, which can then be addressed by Clients via the database port (see PORT ).If the option is set to true , no database server will be launched.
|
STOPPORT
Signature | STOPPORT [port]
|
Default | 8985
|
Summary | This is the port on which the HTTP Server can be locally closed:
|
Create Options
General
MAINMEM
Signature | MAINMEM [boolean]
|
Default | false
|
Summary | If this option is turned on, new databases will be created in main memory:
|
ADDCACHE
Signature | ADDCACHE [boolean]
|
Default | false
|
Summary | If this option is activated, data structures of documents will first be cached to disk before being added to the final database. This option is helpful when larger documents need to be added, and if the existing heuristics cannot estimate the input size (e.g. when adding directories or sending input streams). |
Parsing
CREATEFILTER
Signature | CREATEFILTER [filter]
|
Default | *.xml
|
Summary | File filter in the Glob Syntax, which is applied whenever new databases are created, or resources are added to a database. |
ADDARCHIVES
Signature | ADDARCHIVES [boolean]
|
Default | true
|
Summary | If this option is set to true , files within archives (ZIP, GZIP, TAR, TGZ, DOCX, etc.) are parsed whenever new databases are created or resources are added to a database.
|
ARCHIVENAME
Signature | ARCHIVENAME [boolean]
|
Default | false
|
Summary | If this option is set to true , the file name of parsed archives will be included in the document paths.
|
SKIPCORRUPT
Signature | SKIPCORRUPT [boolean]
|
Default | false
|
Summary | Skips corrupt (i.e., not well-formed) files while creating a database or adding new documents. If this option is activated, document updates are slowed down, as all files will be parsed twice. Next, main memory consumption will be higher as parsed files will be cached in main memory. |
ADDRAW
Signature | ADDRAW [boolean]
|
Default | false
|
Summary | If this option is enabled, all resources that are filtered out by the CREATEFILTER option while being added to a database will be stored as raw files instead (i.e., in their binary representation).
|
PARSER
Signature | PARSER [type]
|
Default | XML
|
Summary | Defines a parser for importing new files to the database. Available parsers are XML , JSON , CSV , TEXT , HTML , and RAW . HTML input will be parsed as XML documents if Tagsoup is not found in the classpath.
|
CSVPARSER
Signature | CSVPARSER [options]
|
Default | empty |
Summary | Specifies the way how CSV data will be parsed. Keys and values are delimited with = , and multiple options are delimited with , . The available options (except for the additional encoding option) are described in the CSV Module.
|
Examples | encoding=CP1252,header=true parses the input as CP1252 and the first line as header.
|
JSONPARSER
Signature | JSONPARSER [options]
|
Default | empty |
Summary | Specifies the way how JSON data will be parsed. Keys and values are delimited with = , and multiple options are delimited with , . The available options (except for the additional encoding option) are described in the JSON Module.
|
Examples | format=jsonml,lax=yes interprets the input as JSONML and uses lax parsing.
|
HTMLPARSER
Signature | HTMLPARSER [options]
|
Default | empty |
Summary | Specifies the way how HTML data will be parsed. Keys and values are delimited with = , and multiple options are delimited with , . The available options are described in the Parsers article.
|
Examples |
|
TEXTPARSER
Signature | TEXTPARSER [options]
|
Default | empty |
Summary | Specifies the way how TEXT data will be parsed. Keys and values are delimited with = , and multiple options are delimited with , . The available options are listed in the Parsers article.
|
Examples | lines=true creates a single element for each line of text.
|
XML Parsing
CHOP
Signature | CHOP [boolean]
|
Default | true
|
Summary | Many XML documents include whitespaces that have been added to improve readability. This option controls the white-space processing mode of the XML parser:
In the following example document, the whitespaces in the text nodes of the <xml>
<title>
Demonstrating the CHOP flag
</title>
<text xml:space="preserve">To <b>be</b>, or not to <b>be</b>, that is the question.</text>
</xml>
It is recommendable to additionally assign |
STRIPNS
Signature | STRIPNS [boolean]
|
Default | false
|
Summary | Strips all namespaces from an XML document and all elements while parsing. |
INTPARSE
Signature | INTPARSE [boolean]
|
Default | false
|
Summary | Uses the internal XML parser instead of the standard Java XML parser. Here are some reasons for using the internal parser:
You will be able to correctly parse most XML documents with the internal parser. Java’s Xerces parser is still used as default, however, because it supports all features of the XML standard and advanced DTD features, such as recursive entity expansion. |
DTD
Signature | DTD [boolean]
|
Default | false
|
Summary | Parses referenced DTDs and resolves XML entities. By default, this option is switched to false , as many DTDs are located externally, which may completely block the process of creating new databases. The CATFILE option can be changed to locally resolve DTDs.
|
XINCLUDE
Signature | XINCLUDE [boolean]
|
Default | true
|
Summary | Resolves XInclude inclusion tags and merges referenced XML documents. By default, this option is switched to true . This option is only available if the standard Java XML Parser is used (see INTPARSE ).
|
CATFILE
Signature | CATFILE [path]
|
Default | empty |
Summary | Semicolon-separated list of XML catalog files to resolve URIs. See Catalog Resolvers for more details. |
Indexing
The following options control the creation of index structures. The current values will be considered if a new database is created. See Indexes for more details.
TEXTINDEX
Signature | TEXTINDEX [boolean]
|
Default | true
|
Summary | Creates a text index whenever a new database is created. A text index speeds up queries with equality comparisons on text nodes. See Text Index for more details. |
ATTRINDEX
Signature | ATTRINDEX [boolean]
|
Default | true
|
Summary | Creates an attribute index whenever a new database is created. An attribute index speeds up queries with equality comparisons on attribute values. See Attribute Index for more details. |
TOKENINDEX
Signature | TOKENINDEX [boolean]
|
Default | true
|
Summary | Creates a token index whenever a new database is created. A token index speeds up searches for single tokens in attribute values. See Token Index for more details. |
FTINDEX
Signature | FTINDEX [boolean]
|
Default | false
|
Summary | Creates a full-text index whenever a new database is created. A full-text index speeds up queries with full-text expressions. See Full-Text Index for more details. |
TEXTINCLUDE
Signature | TEXTINCLUDE [names]
|
Default | empty |
Summary | Defines name patterns for the parent elements of texts that are indexed. By default, all text nodes will be indexed. Name patterns are separated by commas. See Selective Indexing for more details. |
ATTRINCLUDE
Signature | ATTRINCLUDE [names]
|
Default | empty |
Summary | Defines name patterns for the attributes to be indexed. By default, all attribute nodes will be indexed. Name patterns are separated by commas. See Selective Indexing for more details. |
TOKENINCLUDE
Signature | TOKENINCLUDE [names]
|
Default | empty |
Summary | Defines name patterns for the attributes to be indexed. By default, tokens in all attribute nodes will be indexed. Name patterns are separated by commas. See Selective Indexing for more details. |
FTINCLUDE
Signature | FTINCLUDE [names]
|
Default | empty |
Summary | Defines name patterns for the parent elements of texts that are indexed. By default, all text nodes will be indexed. Name patterns are separated by commas. See Selective Indexing for more details. |
MAXLEN
Signature | MAXLEN [int]
|
Default | 96
|
Summary | Specifies the maximum length for strings to be stored in index structures. The value of this option will be assigned once to a new database, and can only be changed by creating a new database or doing a full optimization. |
MAXCATS
Signature | MAXCATS [int]
|
Default | 100
|
Summary | Specifies the maximum number of distinct values (categories) that will be stored together with the element/attribute names or unique paths in the Name Index or Path Index. The value of this option will be assigned once to a new database, and cannot be changed after that. |
UPDINDEX
Signature | UPDINDEX [boolean]
|
Default | false
|
Summary | If turned on, incremental indexing will be enabled:
|
AUTOOPTIMIZE
Signature | AUTOOPTIMIZE [boolean]
|
Default | false
|
Summary | If turned on, auto optimization will be applied to new databases:
|
SPLITSIZE
Signature | SPLITSIZE [num]
|
Default | 0
|
Summary | This option affects the construction of new value indexes. It controls the number of index build operations that are performed before writing partial index data to disk:
|
Full-Text Indexing
STEMMING
Signature | STEMMING [boolean]
|
Default | false
|
Summary | If true , all tokens will be stemmed during full-text indexing, using a language-specific stemmer implementation. By default, tokens will not be stemmed. See Full-Text Index for more details.
|
CASESENS
Signature | CASESENS [boolean]
|
Default | false
|
Summary | If true , the case of tokens will be preserved during full-text indexing. By default, case will be ignored (all tokens will be indexed in lower case). See Full-Text Index for more details.
|
DIACRITICS
Signature | DIACRITICS [boolean]
|
Default | false
|
Summary | If set to true , diacritics will be preserved during full-text indexing. By default, diacritics will be removed. See Full-Text Index for more details.
|
LANGUAGE
Signature | LANGUAGE [lang]
|
Default | en
|
Summary | The specified language will influence the way how texts will be tokenized and stemmed. It can be the name of a language or a language code. See Full-Text Index for more details. |
STOPWORDS
Signature | STOPWORDS [path]
|
Default | empty |
Summary | If a text file with stop words is specified, frequently used terms contained in that file will be ignored when a full-text index is created. A stopword list may decrease the size of the full text index and speed up your queries. See Full-Text Index for more details. |
Query Options
QUERYINFO
Signature | QUERYINFO [boolean]
|
Default | false
|
Summary | Prints more information on internal query rewritings, optimizations, and performance. By default, this info is shown in the Info View in the GUI. It can also be activated on command line via -V .
|
MIXUPDATES
Signature | MIXUPDATES
|
Default | false
|
Summary | Allows queries to both contain updating and non-updating expressions. All updating constraints will be turned off, and nodes to be returned will be copied before they are modified by an updating expression. By default, in compliance with the XQuery Update Facility, this option is set to false . See Returning Results for more details.
|
BINDINGS
Signature | BINDINGS [vars]
|
Default | empty |
Summary | Contains external variables to be bound to a query. The string must comply with the following rules:
This option can also be used on command line with the flag |
Examples |
SET BINDINGS GREETING="hello world!"
XQUERY declare variable $GREETING external; $GREETING
|
INLINELIMIT
Signature | INLINELIMIT
|
Default | 50
|
Summary | This option controls inlining of XQuery functions:
|
UNROLLLIMIT
Signature | UNROLLLIMIT
|
Default | 5
|
Summary | This option controls the unroll limit:
|
ENFORCEINDEX
Signature | ENFORCEINDEX [boolean]
|
Default | false
|
Summary | Enforces index rewritings in path expressions. See Enforce Rewritings for details. |
COPYNODE
Signature | COPYNODE [boolean]
|
Default | true
|
Summary | When creating new nodes in XQuery via Node Constructors, copies of all enclosed nodes will be created, and the copied nodes get new node identities. As a result, the following query yields false :
let $a := <a/>
let $b := <b>{ $a }</b>
return $b/a is $a
This step can be very expensive and memory consuming. If the option is disabled, child nodes will only be linked to the new parent nodes, and the upper query returns |
TAILCALLS
Signature | TAILCALLS
|
Default | 256
|
Summary | Specifies how many stack frames of tail-calls are allowed on the stack at any time. When this limit is reached, tail-call optimization takes place and some call frames are eliminated. The feature can be turned off by setting the value to -1 .
|
WITHDB
Signature | WITHDB
|
Default | true
|
Summary | By default, resources specified via fn:doc and fn:collection are looked up both in the database and in the file system. If you always use db:open to access databases, it is recommendable to disable this option:
|
DEFAULTDB
Signature | DEFAULTDB
|
Default | false
|
Summary | If this option is turned on, paths specified in the fn:doc and fn:collection functions will first be resolved against a database that has been opened in the global context outside the query (e.g. by the OPEN command). If the path does not match any existing resources, it will be resolved as described in the article on accessing database resources.
|
FORCECREATE
Signature | FORCECREATE [boolean]
|
Default | false
|
Summary | By activating this option, database instances will be created with the XQuery functions fn:doc and fn:collection. |
CHECKSTRINGS
Signature | CHECKSTRINGS [boolean]
|
Default | true
|
Summary | By default, characters from external sources that are invalid in XML will trigger an error. If the option is set to false , these characters will be replaced with the Unicode replacement character FFFD (�). The option affects Java Bindings and string conversion and input functions such as archive:create, archive:extract-text, archive:update, and zip:text-entry.
|
WRAPJAVA
Signature | WRAPJAVA [mode]
|
Default | some
|
Summary | Defines the way how values that result from Java code invocation will be converted to XQuery items. Allowed values: none , all , some , instance , and void . See Java Bindings for further details.
|
LSERROR
Signature | LSERROR [error]
|
Default | 0
|
Summary | This option specifies the maximum Levenshtein error for fuzzy full-text matching. By default, if 0 is assigned, the error value is calculated dynamically. See Fuzzy Querying for more details.
|
RUNQUERY
Signature | RUNQUERY [boolean]
|
Default | true
|
Summary | Specifies if a query will be executed or parsed only. This option can also be changed on command line via -R .
|
RUNS
Signature | RUNS [num]
|
Default | 1
|
Summary | Specifies how often a query will be evaluated. The result is serialized only once, and the measured times are averages of all runs. This option can also be changed on command line via -r .
|
Serialization Options
SERIALIZE
Signature | SERIALIZE [boolean]
|
Default | true
|
Summary | Results of XQuery expressions will be serialized if this option is turned on. For debugging purposes and performance measurements, this option can be set to false . It can also be turned off on command line via -z .
|
SERIALIZER
Signature | SERIALIZER [params]
|
Default | empty |
Summary | Parameters for serializing query results. The string must comply with the following rules:
The option can also be used on command line with the flag |
Examples |
|
EXPORTER
Signature | EXPORTER [params]
|
Default | empty |
Summary | Contains parameters for exporting resources of a database and writing files after updates via the WRITEBACK option. Keys and values are separated by equality signs, multiple parameters are delimited by commas. See Serialization for more details.
|
Examples |
|
XMLPLAN
Signature | XMLPLAN [boolean]
|
Default | false
|
Summary | Prints the execution plan of an XQuery expression in its XML representation. This option can also be activated on command line via -x .
|
COMPPLAN
Signature | COMPPLAN [boolean]
|
Default | true
|
Summary | Generates the query plan, which can be activated via XMLPLAN , before or after query compilation. This option can also be activated on command line via -X .
|
FULLPLAN
Signature | FULLPLAN [boolean]
|
Default | false
|
Summary | Attaches the file path, line and column of the expressions in the original query string to the query plan. Values (items and sequences) have no input information attached. |
Other Options
AUTOFLUSH
Signature | AUTOFLUSH [boolean]
|
Default | true
|
Summary | Flushes database buffers to disk after each update. If this option is set to false , bulk operations (multiple single updates) will be evaluated faster. As a drawback, the chance of data loss increases if the database is not explicitly flushed via the FLUSH command.
|
WRITEBACK
Signature | WRITEBACK [boolean]
|
Default | false
|
Summary | Propagates updates on main-memory instances of files that have been retrieved via fn:doc and fn:collection back to disk:
|
MAXSTAT
Signature | MAXSTAT [num]
|
Default | 30
|
Summary | Specifies the maximum number of index occurrences printed by the INFO INDEX command.
|
Changelog
- Version 9.7
- Updated:
GZIP
: Support for POST and PUT requests.
- Version 9.6
- Added:
UNROLLLIMIT
,WRAPJAVA
- Version 9.5
- Updated:
INLINELIMIT
: default reduced to 50. - Updated:
RESTXQERRORS
: additionally suppress stack trace in HTTP response
- Version 9.4
- Added:
LOGTRACE
- Version 9.3
- Version 9.2
- Added:
RESTXQERRORS
,FULLPLAN
- Removed:
DOTPLAN
,DOTCOMPACT
- Version 9.0
- Added:
ENFORCEINDEX
,COPYNODE
,IGNOREHOSTNAME
- Version 8.6
- Added:
FAIRLOCK
,PARSERESTXQ
- Removed:
GLOBALLOCK
(exclusive use of database lock) - Removed:
QUERYPATH
(will now be internally assigned) - Removed:
CACHERESTXQ
(replaced with PARSERESTXQ)
- Version 8.5
- Added:
CACHETIMEOUT
,LOGPATH
- Updated:
AUTHMETHOD
:custom
value added.
- Version 8.4
- Added:
TOKENINDEX
,TOKENINCLUDE
- Added:
SPLITSIZE
(replacingINDEXSPLITSIZE
andFTINDEXSPLITSIZE
) - Removed:
INDEXSPLITSIZE
,FTINDEXSPLITSIZE
- Version 8.3
- Added:
CACHERESTXQ
,TEXTINCLUDE
,ATTRINCLUDE
,FTINCLUDE
,ARCHIVENAME
- Version 8.2
- Removed:
EVENTPORT
,CACHEQUERY
- Version 8.1
- Added:
IGNORECERT
,RESTPATH
- Version 8.0
- Added:
MIXUPDATES
,AUTOOPTIMIZE
,AUTHMETHOD
,XINCLUDE
- Updated:
PROXYPORT
: default set to 0; will be ignored.PROXYHOST
,NONPROXYHOSTS
: empty strings will be ignored.
- Version 7.8.1
- Updated:
ADDARCHIVES
: parsing of TAR and TGZ files.
- Version 7.8
- Added:
CSVPARSER
,JSONPARSER
,TEXTPARSER
,HTMLPARSER
,INLINELIMIT
,TAILCALLS
,DEFAULTDB
,RUNQUERY
- Updated:
WRITEBACK
only applies to main-memory document instances. - Updated:
DEBUG
option can be changed at runtime by users with admin permissions. - Updated: default of
INTPARSE
is nowfalse
. - Removed:
HTMLOPT
(replaced withHTMLPARSER
),PARSEROPT
(replaced with parser-specific options),DOTDISPLAY
,DOTTY
- Version 7.7
- Added:
ADDCACHE
,CHECKSTRINGS
,FTINDEXSPLITSIZE
,INDEXSPLITSIZE
- Version 7.6
- Added:
GLOBALLOCK
- Added: store local options in configuration file after
# Local Options
comments.
- Version 7.5
- Added: options can now be set via system properties
- Added: a pragma expression can be used to locally change database options
- Added:
USER
,PASSWORD
,LOG
,LOGMSGMAXLEN
,WEBPATH
,RESTXQPATH
HTTPLOCAL
,CREATEONLY
,STRIPNS
- Removed:
HTTPPATH
;HTTPPORT
:jetty.xml
configuration file is used instead - Removed: global options cannot be changed anymore during the lifetime of a BaseX instance
- Version 7.3
- Updated:
KEEPALIVE
,TIMEOUT
: default values changed - Removed:
WILDCARDS
; new index supports both fuzzy and wildcard queries - Removed:
SCORING
; new scoring model will focus on lengths of text nodes and match options
- Version 7.2
- Added:
PROXYHOST
,PROXYPORT
,NONPROXYHOSTS
,HTMLOPT
- Updated:
TIMEOUT
: ignore timeout for admin users
- Version 7.1
- Version 7.0
- Added:
SERVERHOST
,KEEPALIVE
,AUTOFLUSH
,QUERYPATH