Changes

Jump to navigation Jump to search
26,627 bytes added ,  09:09, 27 May 2021
m
Fixed typo if should be is
This page is linked from the [[Getting Started]] Section.
The options listed on this page influence the way how database [[Commands|commands]] are executed and XQuery expressions are evaluated. Three data types Two kinds of options exist: strings, numbers, and booleans.
* Values can be changed with the '''[[Commands#SETGlobal Options|SETGlobal Options]] command and requested ''' are valid for all BaseX instances in the same JVM. This is particularly relevant if you are working with the [[Commands#GET|GET]] commandclient/server architecture. All values are * '''Local options'statically bound'' (all remaining ones) are specific to a database client or session; they stay valid until they are changed once again by another operation. If an option is of type boolean, and if no value is specified, its existing value will be inverted.
* Values of options are either ''strings'', ''numbers'' or ''booleans''. Options can also be set in are ''static'' and not bound to a single operation (for example, the prolog of XQuery expressionsnext command). In the option declaration, keys need Various ways exist to be prefixed with {{Code|db:}}. All values will be reset after the evaluation of a queryaccess and change options:
* The current value of an option can be requested with the {{Command|GET}} command. Local options can be changed via {{Command|SET}} (all global options, except for {{Option|DEBUG}}, 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 {{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: <pre classsyntaxhighlight lang="brush:xqueryperl">declare option db:key 'value';# General OptionsDEBUG = false
...
</pre>
# Local OptionsCHOP = false</syntaxhighlight> * 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 {{VersionCode|7org.basex.4}}. An example: <syntaxhighlight lang="perl">java -Dorg.basex.CHOP=false -cp basex.jar org.basex.BaseX -c"get chop"CHOP: Options false</syntaxhighlight> * If using the Mac OS X packaged application then global options can be locally set in XQuery via pragma expressionswithin the Info.plist file within the Contents folder of the application package. For example: <syntaxhighlight lang="xml"><key>JVMOptions</key><array> <string>-Dorg.basex. Note that, at least for now, local pragmas will have no effect on most CHOP=false</string></array></syntaxhighlight> * In a [[Update|update operationsWeb Application]], as these will the default can be evaluated at adjusted in the very end of a query{{Code|web. The following query preserves whitespaces from the parsed XML stringxml}} file as follows:
<pre classsyntaxhighlight lang="brush:xqueryxml">(# db:<context-param> <param-name>org.basex.chop </param-name> <param-value>false #) { parse</param-xml('<xmlvalue> hi </xmlcontext-param>') }</presyntaxhighlight>
* If In XQuery, local options are implicitly changed by operations in the [[GUI]], the underlying commands will can be listed in the set via option declarations and [[GUIXQuery Extensions#VisualizationsPragmas|Info Viewpragmas]].<br/>&nbsp;
=Main Options=If options are changed by operations in the [[GUI]], the underlying commands will be listed in the [[GUI#Visualizations|Info View]].<br/><br/>
The main options are only available from the [[Standalone Mode]] and [[Database Server]] instances of BaseX, i.e., they cannot be changed by database clients. They are stored in the [[Configuration#Configuration Files|.basex config file]], which is opened by every new BaseX instance:=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|DEBUG]] option, which can also be changed at runtime by users with [[User Management|admin permissions]]. ==GeneralOptions== ===DEBUG=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|DEBUG [boolean]}}|-| '''Default'''|{{Code|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 Options#BaseX Standalone|command line]] via <code>-d</code>.|}
===DBPATH===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|DBPATH [path]}}
|-
| '''Default'''
|<code>[[Configuration#Database Directory|{home}/BaseXData]]</code> or <code>[[Configuration#Database Directory|{home}/data]]</code>
|-
| '''Summary'''
|Points to the directory in which all databases are located.<br/> '''Note:''' this option can only be changed if no database is currently opened. If the option is changed, existing databases will not be moved to the new location.
|}
===REPOPATHLOGPATH=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|REPOPATH LOGPATH [path]}}
|-
| '''Default'''
|<code>[[Configuration#Database Directory|{home}/BaseXRepo]].logs</code>
|-
| '''Summary'''
|Points to the directory in which all [[RepositoryLogging|log files]], in which all XQuery modules are locatedstored.<br/>'''Note:''' if Relative paths will be resolved against the option is changed, BaseX needs to be restarted in order to activate existing packages and avoid side effects{{Option|DBPATH}} directory.
|}
===DEBUGREPOPATH=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DEBUGREPOPATH [path]}}
|-
| '''Default'''
|<code>[[Configuration#Database Directory|{{Code|false}home}/repo]]</code>
|-
| '''Summary'''
|Sends internal debug info Points to STDERR. This option can be turned on to get additional information for development and debugging purposesthe [[Repository]], in which all XQuery modules are located.
|}
===LANG===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|LANG [language]}}
|-
|-
| '''Summary'''
|Specifies the interface language. Currently, seven languages are available: 'English', 'German', 'French', 'Dutch', 'Italian', 'Japanese', and 'Vietnamese'. BaseX needs to be restarted in order to activate the new language.
|}
===LANGKEY===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|LANGKEY[boolean]}}
|-
| '''Default'''
|-
| '''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. BaseX needs |} ===FAIRLOCK=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|FAIRLOCK [boolean]}}|-| '''Default'''|{{Code|false}}|-| '''Summary'''|Defines the locking strategy:* By default, non-fair is used. Read transactions will be favored, and transactions that access no databases can be evaluated even if the limit of parallel transactions (specified via {{Option|PARALLEL}}) has been reached. This prevents update operations from blocking all other requests. For example, the DBA can further be used to see which jobs are running, even if the queue is full.* If fair locking is enabled, read and write transactions will be restarted treated equally (first in order to activate this option, first out). This avoids starvation of update operations, and it should be used if the prompt evaluation of update operations is critical.|} ===CACHETIMEOUT=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|CACHETIMEOUT [seconds]}}|-| '''Default'''|{{Code|3600}}|-| '''Summary'''|Specifies how many seconds the results of queries, which have been queued by the [[Jobs Module|asynchronously executed]], will be cached in main memory.
|}
===HOST===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|HOST [host]}}
|-
|-
| '''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 Options#BaseX Client|command line]] via <code>-n</code>.
|}
===PORT===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|PORT [port]}}
|-
|-
| '''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 Options#BaseX Client|command line]] via <code>-p</code>.
|}
===SERVERPORT===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|SERVERPORT [port]}}
|-
|-
| '''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 Options#BaseX Server|command line]] via <code>-p</code>.
|}
===SERVERHOSTUSER=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|SERVERHOST USER [host&#x7c;ipname]}}
|-
| '''Default'''
|''empty'' (''wildcard'')
|-
| '''Summary'''
|This Represents a user name, which is used for accessing the host name server or ip address an HTTP service:* The default value will be overwritten if a client specifies its own credentials.* If the server default value is bound to. The server empty, login will only be open to all clients possible if the client specifies credentials.* The option is set to an empty stringcan also be changed on [[Command-Line Options#BaseX Client|command line]] via <code>-U</code>.
|}
===EVENTPORTPASSWORD=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|EVENTPORT PASSWORD [portpassword]}}
|-
| '''Default'''
|{{Code|1985}}''empty''
|-
| '''Summary'''
|This port Represents a password, which is used by for accessing the server:* The default value will be overwritten if a client specifies its own credentials.* If the default value is empty, login will only be possible if the client to listen for specifies credentials.* The option can also be changed on [[EventsCommand-Line Options#BaseX Client|server eventscommand line]]via <code>-P</code>. This port will only be bound if * Please note that it is a client attaches itself security risk to a database eventspecify your password in plain text.
|}
===HTTPPORTAUTHMETHOD=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|HTTPPORT AUTHMETHOD [portmethod]}}
|-
| '''Default'''
|{{Code|8984}}''Basic''
|-
| '''Summary'''
|This is Specifies the port default authentication method, which will be used by the [[Startup#BaseX HTTP ServerWeb Application|HTTP Serverserver]] for negotiating credentials. Allowed values are {{Code|Basic}}, {{Code|Digest}}, and {{Code|Custom}}:<br/>* If basic access is chosen, the client can still request digest authentication.* This is different for digest access, which cannot be overwritten.* With custom authentication, the server will be listening tonot do any authentication.
|}
===STOPPORTSERVERHOST=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|STOPPORT SERVERHOST [porthost&#x7c;ip]}}
|-
| '''Default'''
|{{Code|8985}}''empty''
|-
| '''Summary'''
|This is the port on host name or ip address the server is bound to. If the option is set to an empty string (which is the default), the [[Startup#BaseX HTTP Server|HTTP Server]] can server will be locally closedopen to all clients.
|}
===HTTPPATHPROXYHOST=== {|width='100%' width='100%'
|-
| width='90120' | '''Signature'''|{{Code|HTTPPATH PROXYHOST [pathhost]}}
|-
| '''Default'''
|<code>[[Configuration#Database Directory|{home}/BaseXHTTP]]</code>''empty''
|-
| '''Summary'''
|Points to This is the HTTP root directory, in which HTML files may be storedhost name of a proxy server. If the value is an empty string, and query files that it will be evaluated by the [[REST]] serviceignored.
|}
===PROXYHOSTPROXYPORT=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|PROXYHOST PROXYPORT [hostport]}}
|-
| '''Default'''
|{{Code|0}}
|-
| '''Summary'''
|This is the host name port number of a proxy server. If the value is set to {{Code|0}}, it will be ignored.
|}
===PROXYPORTNONPROXYHOSTS=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|PROXYPORT NONPROXYHOSTS [porthosts]}}
|-
| '''Default'''
|{{Code|80}}''empty''
|-
| '''Summary'''
|This is a list of hosts that should be directly accessed. If the port number of a proxy servervalue is an empty string, it will be ignored.
|}
===NONPROXYHOSTSIGNOREHOSTNAME=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|NONPROXYHOSTS IGNOREHOSTNAME [hostsboolean]}}
|-
| '''Default'''
|{{Code|false}}
|-
| '''Summary'''
|This If this option is a list enabled, hostnames of hosts that should certificates will not be directly accessedverified. Use {{Option|IGNORECERT}} to completely disable certificate verification.
|}
===PARALLELIGNORECERT=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|PARALLEL IGNORECERT [numberboolean]}}
|-
| '''Default'''
|{{Code|8false}}
|-
| '''Summary'''
|Denotes the maximum allowed This option can be turned on to ignore untrusted certificates when connecting to servers. Use {{CodeOption|numberIGNOREHOSTNAME}} of parallel read [[Transaction Management|transactions]]to suppress only the hostname verification.
|}
===TIMEOUT===
{{Mark|Updated with Version 7.3:}} default value set from {{Code|0}} to {{Code|30}}. {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|TIMEOUT [seconds]}}
|-
|-
| '''Summary'''
|Specifies the maximum time a read-only transaction triggered by a client may take. If an operation takes longer than the specified timeoutnumber of seconds, it will be aborted.<br/>Write Active update operations will not be affected by this timeout, as this would corrupt the integrity of the database.<br/>The timeout is deactivated if the timeout is set to {{Code|0}}. It is ignored for {{Codeoperations with [[User Management|ADMIN}} operationsadmin permissions]].
|}
===KEEPALIVE===
{{Mark|Updated with Version 7.3:}} default value set from {{Code|0}} to {{Code|600}}. {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|KEEPALIVE [seconds]}}
|-
| '''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 {{Code|0}}.
|}
 
===PARALLEL===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|PARALLEL [number]}}
|-
| '''Default'''
|{{Code|8}}
|-
| '''Summary'''
|Denotes the maximum allowed number of parallel [[Transaction Management|transactions]]:
* If {{Option|FAIRLOCK}} is enabled, the number of parallel transactions will never exceed the specified value.
* If the option is disabled (which is the default), the limit only applies to transactions that access databases.
* The main reason for allowing parallel operations is to prevent slow transactions from blocking all other operations. A higher number of parallel operations may increase disk activity and thus slow down queries. In some cases, a single transaction may even give you better results than any parallel activity.
|}
===LOG===
{{Mark|Introduced with Version 7.4}} {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|LOG[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Turns [[Logging]] of server operations and HTTP requests on/off. This option can also be changed when running the server on [[Command-Line Options#BaseX Server|command line]] via <code>-z</code>.
|}
===LOGMSGMAXLEN===
{{Mark|Introduced with Version 7.4}} {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|LOGMSGMAXLEN [length]}}
|-
| '''Summary'''
|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.
|}
 
==HTTP Services==
 
Most HTTP options are defined in the {{Code|jetty.xml}} and {{Code|web.xml}} configuration files in the <code>[https://github.com/BaseXdb/basex/tree/master/basex-api/src/main/webapp/WEB-INF webapp/WEB-INF]</code> directory. Some additional BaseX-specific options exist that will be set before the web server is started:
 
===WEBPATH===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|WEBPATH [path]}}
|-
| '''Default'''
|<code>[[Configuration#Database Directory|{home}/webapp]]</code>
|-
| '''Summary'''
|Points to the directory in which all the [[Web Application]] contents are stored, including XQuery, Script, [[RESTXQ]] and configuration files:
* The option is ignored if BaseX is deployed as [[Web Application#Servlet_Container|web servlet]].
* It cannot be assigned via the {{Code|web.xml}} file, as it will be evaluated before the configuration files are parsed.
|}
 
===GZIP===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|GZIP [boolean]}}
|-
| '''Default'''
|<code>false</code>
|-
| '''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>.
* It cannot be assigned via the {{Code|web.xml}} file, as it will be evaluated before the configuration files are parsed.
* The [https://github.com/eclipse/jetty.project/blob/7cc552013eb4d05cb603ba0bc85d176c97957cd4/jetty-server/src/main/java/org/eclipse/jetty/server/handler/gzip/GzipHandler.java#L187-L211 same defaults] of the web server will be applied (support for GET requests, exclusion of binaries, MSIE 6.0, etc.).
|}
 
===RESTXQPATH===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|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 {{Option|WEBPATH}} directory.
|}
 
===PARSERESTXQ===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|PARSERESTXQ}}
|-
| '''Default'''
|{{Code|3}}
|-
| '''Summary'''
|Timeout after which the RESTXQ directory will be parsed for changes:
* If {{Code|0}} is specified, the directory will be parsed every time a RESTXQ function is called.
* A positive value defines the idle time in seconds after which parsing will be enforced. The default value is {{Code|3}}: Changes in the RESTXQ directory will be detected after 3 seconds without RESTXQ function calls.
* Monitoring is completely disabled if a negative value is specified.
 
See [[RESTXQ#Preliminaries|RESTXQ Preliminaries]] for more details.
|}
 
===RESTXQERRORS===
 
{{Mark|Updated with BaseX 9.5:}} Additionally suppress stack trace in HTTP response.
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|RESTXQERRORS}}
|-
| '''Default'''
|{{Code|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|RESTXQ Error Handling]] for more details.
|}
 
===RESTPATH===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|RESTPATH [path]}}
|-
| '''Default'''
|''empty''
|-
| '''Summary'''
|Points to the directory which contains XQuery files and command scripts, which can be evaluated via the [[REST#GET Requests|REST run operation]]. Relative paths will be resolved against the {{Option|WEBPATH}} directory.
|}
 
===HTTPLOCAL===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|HTTPLOCAL [boolean]}}
|-
| '''Default'''
|{{Code|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 {{Option|PORT}}).<br/>If the option is set to {{Code|true}}, no database server will be launched.
|}
 
===STOPPORT===
 
{| width='100%'
|-
| width='120' | '''Signature'''
|{{Code|STOPPORT [port]}}
|-
| '''Default'''
|{{Code|8985}}
|-
| '''Summary'''
|This is the port on which the [[Startup#BaseX HTTP Server|HTTP Server]] can be locally closed:
* The listener for stopping the web server will only be started if the specified value is greater than {{Code|0}}.
* The option is ignored if BaseX is used as a [[Web Application]] or started via [[Web Application#Maven|Maven]].
* This option can also be changed when running the HTTP server on [[Command-Line Options#BaseX Server|command line]] via <code>-s</code>.
|}
===MAINMEM===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|MAINMEM[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|If this option is turned on, new databases will be exclusively created in main memory. :* Most queries will be evaluated faster in main -memory mode, but all data is lost if the BaseX instance in which the database was created is shut down. The value of this option * It is not possible to store binary resources in a main-memory database.* A main-memory database will be assigned once have no disk representation. However, it is possible to export the database via the {{Command|EXPORT}} command, and create a new databasefrom the exported file in a second step.* This option will not be available for [[Database Module#db:create|db:create]], and cannot because the database would not be changed accessible anymore after thatdatabase creation, i. e., outside the query scope.
|}
===CREATEONLYADDCACHE===
{{Mark|Introduced with Version 7.4:}}{|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|CREATEONLYADDCACHE [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|By defaultIf this option is activated, newly created databases data structures of documents will automatically first be opened in order cached to disk before being added to be available for further processing stepsthe final database. By setting the flag This option is helpful when larger documents need to {{Code|true}}be added, this will be preventedand if the existing heuristics cannot estimate the input size (e.g. when adding directories or sending input streams).
|}
===CREATEFILTER===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|CREATEFILTER [filter]}}
|-
===ADDARCHIVES===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|ADDARCHIVES[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|If this option is set to {{Code|true}}, files within archives (ZIP, GZIP, TAR, TGZ, DOCX, etc.) are parsed whenever new database databases are created or resources are added to a database.|} ===ARCHIVENAME=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|ARCHIVENAME [boolean]}}|-| '''Default'''|{{Code|false}}|-| '''Summary'''|If this option is set to {{Code|true}}, the file name of parsed archives will be included in the document paths.
|}
===SKIPCORRUPT===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|SKIPCORRUPT[boolean]}}
|-
| '''Default'''
===ADDRAW===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|ADDRAW[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|If this option is activatedenabled, and if new all resources are added to a database, all files that are not filtered out by the [[#CREATEFILTER{{Option|CREATEFILTER]] }} option while being added to a database will be added stored as ''[[Binary Data|raw'' files ]] instead (i.e., in their binary representation).
|}
===PARSER===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|PARSER [type]}}
|-
|-
| '''Summary'''
|Defines a [[Parsers|parser]] for importing new files to the database. Currently, 'Available parsers are {{Code|XML'}}, '{{Code|JSON'}}, '{{Code|CSV'}}, '{{Code|TEXT'}}, '{{Code|HTML' are available as parsers}}, and {{Code|RAW}}. HTML input will be parsed as normal XML files documents if [http://home.ccil.org/~cowan/XML/tagsoup/ [Parsers#HTML_Parser|Tagsoup]] is not found in the classpath.
|}
===PARSEROPTCSVPARSER=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|PARSEROPT CSVPARSER [options]}}
|-
| '''Default'''
|-
| '''Summary'''
|Defines parser-specific Specifies the way how CSV data will be parsed. Keys and values are delimited with <code>=</code>, and multiple options are delimited with <code>,</code>. The available options; see (except for the additional <code>encoding</code> option) are described in the [[ParsersCSV Module#Options|CSV Module]] for more information.|-| '''Examples'''|<code>encoding=CP1252,header=true</code> parses the input as CP1252 and the first line as header.
|}
===HTMLOPTJSONPARSER==={{Mark|Introduced with Version 7.2:}}{|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|HTMLOPT JSONPARSER [options]}}
|-
| '''Default'''
|-
| '''Summary'''
|Allows to specify TagSoup Specifies the way how JSON data will be parsed. Keys and values are delimited with <code>=</code>, and multiple options are delimited with <code>,</code>. The available options (except for the additional <code>encoding</code> option) are described in the [[JSON Module#Options|JSON Module]].|-| '''Examples'''|<code>format=jsonml,lax=yes</code> interprets the input as JSONML and uses lax parsing.|} ===HTMLPARSER=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|HTMLPARSER [options]}}|-| '''Default'''|''empty''|-| '''Summary'''|Specifies the way how HTML parsing; see data will be parsed. Keys and values are delimited with <code>=</code>, and multiple options are delimited with <code>,</code>. The available options are described in the [[Parsers#HTML ParserOptions|Parsers]] article.|-| '''Examples'''|* <code>encoding=Shift-JIS,nons=true</code> parses the input as Sihft-JIS and suppresses namespaces.* <code>lexical=true</code> preserves comments.|} ===TEXTPARSER=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|TEXTPARSER [options]}}|-| '''Default'''|''empty''|-| '''Summary'''|HTML ParserSpecifies the way how TEXT data will be parsed. Keys and values are delimited with <code>=</code>, and multiple options are delimited with <code>,</code>. The available options are listed in the [[Parsers]] article.|-| '''Examples'''|<code>lines=true</code> creates a single element for more informationeach line of text.
|}
===CHOP===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|CHOP[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Chops all 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 while building will be chopped and all empty text nodes will be discarded.* The flag should be turned off if a databasedocument contains [[Full-Text#Mixed Content|mixed content]].* The flag can also be turned off on [[Command-Line Options#BaseX Standalone|command line]] via <code>-w</code>.* If the <code>xml:space="preserve"</code> attribute is attached to an element, and discards empty chopping will be turned off for all descendant text nodes.  In the following example document, the whitespaces in the text nodesof the {{Code|text}} element will not be chopped:<syntaxhighlight lang="xml"><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. This </text></xml></syntaxhighlight>It is recommendable to additionally assign <code>indent=no</code> to the {{Option|SERIALIZER}} option often reduces ; otherwise the database size by up to 50%serialized documents will automatically be indented.
|}
===INTPARSESTRIPNS=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|INTPARSESTRIPNS [boolean]}}
|-
| '''Default'''
|{{Code|truefalse}}
|-
| '''Summary'''
|Uses the internal XML parser instead of the standard Java Strips all namespaces from an XML parser. The internal parser is faster, more fault tolerant document and supports common HTML entities out-of-the-box, but it does not support all features needed for elements while parsing DTDs.
|}
===STRIPNSINTPARSE==={{Mark|Introduced with Version 7.4:}}{|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|STRIPNSINTPARSE [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Strips Uses the internal XML parser instead of the standard Java XML parser. Here are some reasons for using the internal parser:* Performance: Documents (in particular small ones) will be parsed faster* Fault tolerance: invalid characters will automatically be replaced with the Unicode replacement character <code>FFFD</code> (&#xFFFD;)* Entities: around 250 HTML entities will be detected and decodedYou 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 namespaces from an features of the XML document before adding it to a databasestandard and advanced DTD features, such as recursive entity expansion.
|}
===DTD===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DTD[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Parses referenced DTDs and resolves XML entities. By default, this option is switched to {{Code|false}}, as many DTDs are located externally, which may completely block the process of creating new databases. The [[#CATFILE{{Option|CATFILE]] }} option can be changed to locally resolve DTDs.|} ===XINCLUDE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|XINCLUDE [boolean]}}|-| '''Default'''|{{Code|true}}|-| '''Summary'''|Resolves XInclude inclusion tags and merges referenced XML documents. By default, this option is switched to {{Code|true}}. This option is only available if the standard Java XML Parser is used (see {{Option|INTPARSE}}).
|}
===CATFILE===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|CATFILE [path]}}
|-
|-
| '''Summary'''
|Specifies a Semicolon-separated list of XML catalog file files to locally resolve DTDs; see the entry on URIs. See [[Catalog Resolver]]s 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. ===PATHINDEXTEXTINDEX=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|PATHINDEXTEXTINDEX [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Creates a path text index whenever a new database is created. A path text index helps to optimize location paths; see speeds up queries with equality comparisons on text nodes. See [[IndexesIndex#Text Index|Text Index]] for more details.
|}
===TEXTINDEXATTRINDEX=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|TEXTINDEXATTRINDEX [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Creates a text an attribute index whenever a new database is created. A text An attribute index speeds up queries with equality comparisons on text nodes; see attribute values. See [[IndexesIndex#Attribute Index|Attribute Index]] for more details.
|}
===ATTRINDEXTOKENINDEX=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|ATTRINDEXTOKENINDEX [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Creates an attribute a token index whenever a new database is created. An attribute A token index speeds up queries with equality comparisons on searches for single tokens in attribute values; see . See [[IndexesIndex#Token Index|Token Index]] for more details.
|}
===FTINDEX===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|FTINDEX[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Creates a full-text index whenever a new database is created. A full-text index speeds up queries with full-text expressions; see . See [[Index#Full-Text Index|Full-Text Index]] for more details.|} ===TEXTINCLUDE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|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.<br/>Name patterns are separated by commas. See [[Indexes#Selective Indexing|Selective Indexing]] for more details.|} ===ATTRINCLUDE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|ATTRINCLUDE [names]}}|-| '''Default'''|''empty''|-| '''Summary'''|Defines name patterns for the attributes to be indexed. By default, all attribute nodes will be indexed.<br/>Name patterns are separated by commas. See [[Indexes#Selective Indexing|Selective Indexing]] for more details.|} ===TOKENINCLUDE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|TOKENINCLUDE [names]}}|-| '''Default'''|''empty''|-| '''Summary'''|Defines name patterns for the attributes to be indexed. By default, tokens in all attribute nodes will be indexed.<br/>Name patterns are separated by commas. See [[Indexes#Selective Indexing|Selective Indexing]] for more details.|} ===FTINCLUDE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|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.<br/>Name patterns are separated by commas. See [[Indexes#Selective Indexing|Selective Indexing]] for more details.
|}
===MAXLEN===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|MAXLEN[int]}}
|-
| '''Default'''
|-
| '''Summary'''
|Specifies the maximum length of for strings that are to be indexed by the name, path, value, and full-text stored in [[Indexes|index structures]]. The value of this option will be assigned once to a new database, and cannot can only be changed after thatby creating a new database or doing a [[Commands#OPTIMIZE|full optimization]].
|}
===MAXCATS===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|MAXCATS[int]}}
|-
| '''Default'''
===UPDINDEX===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|UPDINDEX[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|If turned on, incremental indexing will be activatedenabled:* The current value of this option will be assigned to new databases. It can be changed for existing databases by running {{Command|OPTIMIZE}} with the {{Code|ALL}} keyword or [[Database_Module#db:optimize|db: all optimize($db, true())]].* After each update operations , the value indexes will be refreshed as well. Incremental updates are currently not available for the full-text index and database statistics.* Find more details in the article on [[Index#Updates|Index Structures]].|} ===AUTOOPTIMIZE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|AUTOOPTIMIZE [boolean]}}|-| '''Default'''|{{Code|false}}|-| '''Summary'''|If turned on, auto optimization will also be applied to new databases:* With each update , outdated indexes and database statistics will be recreated.* As a result, the value index structures (texts and attribute values)will always be up-to-date.* However, updates can take much longer, so this option should only be activated for medium-sized databases. * The value of this option will be assigned once to a new database, and cannot . It can be changed after thatreassigned by running {{Command|OPTIMIZE}} or [[Database_Module#db:optimize|db:optimize]]. The advantage |} ===SPLITSIZE=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|SPLITSIZE [num]}}|-| '''Default'''|{{Code|0}}|-| '''Summary'''|This option affects the [[Indexes#Performance|construction]] of incremental new value indexes is . It controls the number of index build operations that are performed before writing partial index data to disk:* By default, if the value index structures will always be upis set to {{Code|0}}, some heuristics are applied, based on the current memory consumption. Usually, this works fine.* If explicit garbage collection is disabled when running Java (e.g. via the JVM option {{Code|-XX:+DisableExplicitGC}}), you may need to-datechoose a custom split size.* You can e. g. start with {{Code|1000000}} (one million) index operations and adjust this value in the next steps. * The downside larger the assigned value is that updates , the less splits will take a little bit longerplace, and the more main memory will be required.
|}
==Full-TextIndexing==
===STEMMING===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|STEMMING[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|A new If {{Code|true}}, all tokens will be stemmed during full-text index indexing, using a language-specific stemmer implementation. By default, tokens will stem all tokens and speed up queries on not be stemmed tokens. The same stemming normalization will be applied to all query tokens that are checked against tokens in this indexSee [[Indexes#Full-Text Index|Full-Text Index]] for more details.
|}
===CASESENS===
 {|width='100%'|-| width='90120' | '''Signature'''|{{Code|CASESENS[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|A new full-text index will preserve If {{Code|true}}, the case of all tokenswill be preserved during full-text indexing. The same By default, case normalization will be applied to ignored (all query tokens that are checked against tokens will be indexed in this indexlower case). See [[Indexes#Full-Text Index|Full-Text Index]] for more details.
|}
===DIACRITICS===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DIACRITICS[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|A new If set to {{Code|true}}, diacritics will be preserved during full-text index will preserve the diacritics of all tokensindexing. The same By default, diacritics normalization will be applied to all query tokens that are checked against tokens in this indexremoved. See [[Indexes#Full-Text Index|Full-Text Index]] for more details.
|}
===LANGUAGE===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|LANGUAGE [lang]}}
|-
|-
| '''Summary'''
|A new full-text index The specified language will use influence the given language to normalize all tokensway how texts will be tokenized and stemmed. This option is mainly important if tokens are to It can be stemmed, or if the tokenization name of a language differs from Western languagesor a language code. See [[Indexes#Full-Text Index|Full-Text Index]] for more details.
|}
===STOPWORDS===
 {|width='100%'
|-
| width='90120' | '''Signature'''
|{{Code|STOPWORDS [path]}}
|-
|-
| '''Summary'''
|A new If a text file with stop words is specified, frequently used terms contained in that file will be ignored when a full-text index will drop tokens that are listed in the specified stopword listis created. A stopword list may decrease the size of the full text indexand speed up your queries. A standard stopword list See [[Indexes#Full-Text Index|Full-Text Index]] for English texts is provided in the directory {{Code|etc/stopwords.txt}} in the official releasesmore details.
|}
=Query Options= ===WRITEBACKQUERYINFO=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|WRITEBACKQUERYINFO [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Updates Prints more information on XML nodes are written back to internal query rewritings, optimizations, and performance. By default, this info is shown in the [[GUI#Visualizations|Info View]] in the input filesGUI. Note that no backups of your original files will It can also be created if this option is turned activated on[[Command-Line Options#BaseX Standalone|command line]] via <code>-V</code>.
|}
===WILDCARDSMIXUPDATES===
{| width='100%'|-| width='120' | '''Signature'''|{Mark{Code|MIXUPDATES}}|Removed in Version 7.3:-| '''Default'''|{{Code|false}} new index supports |-| '''Summary'''|Allows queries to both fuzzy contain updating and wildcard queriesnon-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 {{Code|false}}. See [[XQuery Update#Returning Results|Returning Results]] for more details.|}
===BINDINGS=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|WILDCARDSBINDINGS [vars]}}
|-
| '''Default'''
|{{Code|false}}''empty''
|-
| '''Summary'''
|Contains external variables to be bound to a query. The string must comply with the following rules:* Variable names and values must be separated by equality signs.* Multiple variables must be delimited by commas.* Commas in values must be duplicated.* Variables may optionally be introduced with a leading dollar sign.* If a new full-text index is createdvariable uses a namespace different to the default namespace, it will can be particularly optimized for wildcards expressionsspecified with the [http://www.jclark.com/xml/xmlns.htm Clark Notation] or [https://www. See the page w3.org/TR/xquery-30/#id-basics Expanded QName Notation].This option can also be used on [[FullCommand-TextLine Options#BaseX Standalone|command line]]s for more information on XQuery Full Textwith the flag <code>-b</code>.|-| '''Examples'''|* <code>$a=1,$b=2</code> &nbsp; binds the values {{Code|1}} and {{Code|2}} to the variables $a and $b* <code>a=1,,2</code> &nbsp; binds the value {{Code|1,2}} to the variable $a* <code>{URI}a=x</code> &nbsp; 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 {{Code|$GREETING}}:<syntaxhighlight lang="xquery">SET BINDINGS GREETING="hello world!"XQUERY declare variable $GREETING external; $GREETING</syntaxhighlight>
|}
===SCORINGINLINELIMIT===
{{Mark|Removed in Updated with Version 79.35:}} new scoring model will focus on lengths of text nodes and match optionsdefault reduced to 50.
{|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|SCORING [mode]INLINELIMIT}}
|-
| '''Default'''
|{{Code|050}}
|-
| '''Summary'''
|A new full-text index This option controls inlining of XQuery functions:* The XQuery compiler inlines functions to speed up query evaluation.* Inlining will pre-calculate full-text scoresonly take place if a function body is not too large (i.e., if it does not contain too many expressions). This * With this option enables TF/IDF/based scores in full-text queries and increases main memory consumption while indexing, this maximum number of expressions can be specified. See * Function inlining can be turned off by setting the value to {{Code|0}}.* The limit can be locally overwritten via the [[Full-TextXQuery Extensions#ScoringFunction Inlining|Scoring%basex:inline]] for annotation (follow the link to get more information on different scoring typesfunction inlining).
|}
=Query Options==UNROLLLIMIT=== {{Mark|Introduced with Version 9.6:}}
===QUERYINFO==={|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|QUERYINFOUNROLLLIMIT}}
|-
| '''Default'''
|{{Code|false5}}
|-
| '''Summary'''
|Prints 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 information on internal query rewritings, optimizationswill take place, but the memory consumption and performancecompile time will increase. The query info will always be printed in the * See [[GUIXQuery Optimizations#VisualizationsLoop Unrolling|Info ViewLoop Unrolling]] in the GUI, or it can be activated with the [[Startup_Options#BaseX_Standalone|-V flag]] on command linefor more details.
|}
===XQUERY3ENFORCEINDEX=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|XQUERY3ENFORCEINDEX [boolean]}}
|-
| '''Default'''
|{{Code|truefalse}}
|-
| '''Summary'''
|Enables all Enforces index rewritings in path expressions. See [[XQuery 3.0Indexes#Enforce Rewritings|Enforce Rewritings]] features supported by BaseX. If this option is set to {{Code|false}}, the XQuery parser will only accept expressions of the XQuery 1.0 specificationfor details.
|}
===SERIALIZECOPYNODE=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|SERIALIZECOPYNODE [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Results of When creating new nodes in XQuery expressions via [https://www.w3.org/TR/xquery-31/#id-constructors Node Constructors], all enclosed nodes will be copied, and all resulting nodes will get new node identities. This step can be very expensive, and it can be serialized if disabled with this option is turned on. For debugging purposes and performance measurementsThe option should be used carefully, this option can as it changes the standard behavior of XQuery. It should preferrably be set to {{Codeused in [[XQuery Extensions#Database Pragmas|false}}Pragmas]].
|}
===BINDINGSTAILCALLS=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|BINDINGS [vars]TAILCALLS}}
|-
| '''Default'''
|''empty''{{Code|256}}
|-
| '''Summary'''
|Contains external variables to be bound to a query. Variable names and values are separated by equality signs, and multiple variables are delimited by commas. Variables may optionally be introduced with a leading dollar sign. Commas that occur in the value itself are encoded by duplication. 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 Specifies how many stack frames of [httphttps://wwwen.w3wikipedia.org/TRwiki/xqueryTail_call tail-30/#id-basics Expanded QName Notationcalls]are allowed on the stack at any time.|When this limit is reached, tail-| '''Examples'''|<code>$a=1,$b=2</code> &nbsp; binds the values {{Code|1}} call optimization takes place and {{Code|2}} to the variables $a and $b<br/><code>a=1,,2</code> &nbsp; binds some call frames are eliminated. The feature can be turned off by setting the value to {{Code|-1,2}} to the variable $a<br/><code>{URI}a=x</code> or <code>'URI':a=x</code> &nbsp; binds the value {{Code|x}} to the variable $a with the namespace {{Code|URI}}.
|}
===SERIALIZERWITHDB=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|SERIALIZER [params]WITHDB}}
|-
| '''Default'''
|''empty''{{Code|true}}
|-
| '''Summary'''
|Contains parameters for serializing queries; see By default, resources specified via [[SerializationDatabases#XML Documents|fn:doc]] for more details. Keys and values [[Databases#XML Documents|fn:collection]] are separated by equality signs, looked up both in the database and multiple parameters are delimited by commasin the file system.If you always use {{Function|-Database| '''Example'''|<code>encoding=US-ASCIIdb:open}} to access databases,omit-xml-declaration=no</code> it is recommendable to disable this option: sets * No locks will be created for the encoding two functions (see [[Transaction Management#Limitations|limitations of database locking]] for more details).* Access to {{Code|US-ASCII}} local and prints external resources will be faster, as the XML declarationdatabase lookup will be skipped.
|}
===EXPORTERDEFAULTDB=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|EXPORTER [params]DEFAULTDB}}
|-
| '''Default'''
|''empty''{{Code|false}}
|-
| '''Summary'''
|Contains parameters for exporting all resources of a database; see If this option is turned on, paths specified in the [[Databases#XML Documents|fn:doc]] and [[SerializationDatabases#XML Documents|fn:collection]] for more detailsfunctions will first be resolved against a database that has been opened in the global context outside the query (e.g. Keys and values are separated by equality signsthe {{Command|OPEN}} command). If the path does not match any existing resources, multiple parameters are delimited by commasit will be resolved as described in the article on [[Databases#Access Resources|accessing database resources]].
|}
===QUERYPATHFORCECREATE=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|QUERYPATH FORCECREATE [pathboolean]}}
|-
| '''Default'''
|''empty''{{Code|false}}
|-
| '''Summary'''
|Contains By activating this option, database instances will be created with the path (''base URI'') to the executed query (defaultXQuery functions [[Databases#XML Documents|fn: ''empty''). This directory will be used to resolve relative paths to documents, query modules, doc]] and other resources addressed in a query[[Databases#XML Documents|fn:collection]].
|}
===CACHEQUERYCHECKSTRINGS=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|CACHEQUERYCHECKSTRINGS [boolean]}}
|-
| '''Default'''
|{{Code|falsetrue}}
|-
| '''Summary'''
|Caches the query results before returning them to By default, characters from external sources that are invalid in XML will trigger an error. If the client. This option may be is set to {{Code|true}} if <code>false</code>, these characters will be replaced with the whole result is needed for further operations Unicode replacement character <code>FFFD</code> (&#xFFFD;). The option affects [[Java Bindings]] and string conversion and input functions such as is e.g. the case in the GUI of BaseX)[[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]].
|}
===FORCECREATELSERROR=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|FORCECREATELSERROR [error]}}
|-
| '''Default'''
|{{Code|false0}}
|-
| '''Summary'''
|This option specifies the maximum Levenshtein error for fuzzy full-text matching. By activating this optiondefault, the XQuery if {{Code|doc()0}} and {{Codeis assigned, the error value is calculated dynamically. See [[Full-Text#Fuzzy_Querying|collection()}} functions will create database instances Fuzzy Querying]] for the addressed input filesmore details.
|}
===AUTOFLUSHRUNQUERY=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|AUTOFLUSHRUNQUERY [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Flushes database buffers to disk after each updateSpecifies if a query will be executed or parsed only. If this This option is set to {{Code|false}}, bulk operations (multiple single updates) will can also be evaluated faster. As a drawback, the chance of data loss increases if the database is not explicitly flushed via the changed on [[CommandsCommand-Line Options#FLUSHBaseX Standalone|FLUSHcommand line]] commandvia <code>-R</code>.
|}
===MAXSTATRUNS=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|MAXSTAT RUNS [num]}}
|-
| '''Default'''
|{{Code|301}}
|-
| '''Summary'''
|Specifies how often a query will be evaluated. The result is serialized only once, and the maximum number measured times are averages of index occurrences printed by the <code>all runs. This option can also be changed on [[CommandsCommand-Line Options#INFOBaseX Standalone|INFO INDEXcommand line]]via <code>-r</code> command.
|}
=Serialization Options= ===LSERRORSERIALIZE=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|LSERROR SERIALIZE [errorboolean]}}
|-
| '''Default'''
|{{Code|0true}}
|-
| '''Summary'''
|This Results of XQuery expressions will be serialized if this option specifies the maximum Levenshtein error for the BaseX-specific fuzzy match is turned on. For debugging purposes and performance measurements, this optioncan be set to {{Code|false}}. See the page It can also be turned off on [[FullCommand-TextLine Options#Fuzzy_QueryingBaseX Standalone|Full-Textscommand line]] for more information on fuzzy queryingvia <code>-z</code>.
|}
===RUNSSERIALIZER=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|RUNS SERIALIZER [numparams]}}
|-
| '''Default'''
|{{Code|1}}''empty''
|-
| '''Summary'''
|Specify number of runs a Parameters for [[Serialization|serializing]] query is executed results. The string must comply with the following rules:* Variable names and values must be separated by equality signs.* Multiple variables must be delimited by commas.* Commas in values must be duplicated.The option can also be used on [[Command-Line Options#BaseX Standalone|command line]] with the flag <code>-s</code>.|-| '''Examples'''|* <code>indent=no</code> : disables automatic indentation of XML nodes. This is usually a good choice when working with [[CommandsFull-Text#XQUERYMixed Content|XQUERYMixed-Content Data]] command. The result is only serialized once* <code>encoding=US-ASCII, omit-xml-declaration=no</code> : sets the encoding to {{Code|US-ASCII}} and prints the measured times are averages of all runsXML declaration.* <code>item-separator=,,</code> : separates serialized items by a single comma.
|}
===EXPORTER=== {| width='100%'|-| width='120' | '''Signature'''|{{Code|EXPORTER [params]}}|-| '''Default'''|''empty''|-| '''Summary'''|Contains parameters for exporting resources of a database and writing files after updates via the {{Option|WRITEBACK}} option. Keys and values are separated by equality signs, multiple parameters are delimited by commas. See [[Serialization Options]] for more details.|-| '''Examples'''|* <code>indent=no,omit-xml-declaration=no</code> : disables automatic indentation of XML nodes, outputs the XML declaration.|}
===XMLPLAN===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|XMLPLAN[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Prints the execution plan of an XQuery expression in its XML representation. This option can also be activated on [[Command-Line Options#BaseX Standalone|command line]] via <code>-x</code>.
|}
===COMPPLAN===
 {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|COMPPLAN[boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Creates Generates the query plan , which can be activated via {{Option|XMLPLAN}}, before or after the query compilation step. Query plans might change due to optimizationsThis option can also be activated on [[Command-Line Options#BaseX Standalone|command line]] via <code>-X</code>.
|}
===DOTPLANFULLPLAN=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DOTPLANFULLPLAN [boolean]}}
|-
| '''Default'''
|-
| '''Summary'''
|Visualizes Attaches the execution plan file path, line and column of an XQuery expression with [http://www.graphviz.org dotty] and saves its dot file the expressions in the original query string to the query directoryplan. Values (items and sequences) have no input information attached.
|}
=Other Options= ===DOTCOMPACTAUTOFLUSH=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DOTCOMPACTAUTOFLUSH [boolean]}}
|-
| '''Default'''
|{{Code|falsetrue}}
|-
| '''Summary'''
|Chooses Flushes database buffers to disk after each update. If this option is set to {{Code|false}}, bulk operations (multiple single updates) will be evaluated faster. As a compact dot representationdrawback, the chance of data loss increases if the database is not explicitly flushed via the {{Command|FLUSH}} command.
|}
===DOTDISPLAYWRITEBACK=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DOTDISPLAYWRITEBACK [boolean]}}
|-
| '''Default'''
|{{Code|truefalse}}
|-
| '''Summary'''
|Visualizes Propagates updates on main-memory instances of files that have been retrieved via [[Databases#XML Documents|fn:doc]] and [[Databases#XML Documents|fn:collection]] back to disk:* This option can also be activated on [[Command-Line Options#BaseX Standalone|command line]] via <code>-u</code>.* Please take in mind that no backup will be created from your original files.* The serialization options can be controlled via the dot representation after the query execution{{Option|EXPORTER}} option.
|}
===DOTTYMAXSTAT=== {|width='100%'
|-
| width='90120' | '''Signature'''|{{Code|DOTTY MAXSTAT [pathnum]}}
|-
| '''Default'''
|{{Code|dotty30}}
|-
| '''Summary'''
|Location Specifies the maximum number of index occurrences printed by the {{CodeCommand|dottyINFO INDEX}} executablecommand.
|}
=Changelog=
;Version 79.46* Added: {{Option|UNROLLLIMIT}}
;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* Added: {{Option|WITHDB}}, {{Option|GZIP}} ;Version 9.2* Added: {{Option|RESTXQERRORS}}, {{Option|FULLPLAN}}* Removed: <code>DOTPLAN</code>, <code>DOTCOMPACT</code> ;Version 9.0* Added: pragma expression for temporarily setting {{Option|ENFORCEINDEX}}, {{Option|COPYNODE}}, {{Option|IGNOREHOSTNAME}} ;Version 8.6* Added: {{Option|FAIRLOCK}}, {{Option|PARSERESTXQ}}* Removed: {{Code|GLOBALLOCK}} (exclusive use of database optionslock)* Removed: {{Code|QUERYPATH}} (will now be internally assigned)* Removed: {{Code|CACHERESTXQ}} (replaced with PARSERESTXQ) ;Version 8.5* Added: {{Option|CACHETIMEOUT}}, {{Option|LOGPATH}}* Updated: {{Option|AUTHMETHOD}}: {{Code|custom}} value added. ;Version 8.4* Added: {{Option|TOKENINDEX}}, {{Option|TOKENINCLUDE}}* Added: {{Option|SPLITSIZE}} (replacing <code>INDEXSPLITSIZE</code> and <code>FTINDEXSPLITSIZE</code>)* Removed: <code>INDEXSPLITSIZE</code>, <code>[[#STRIPNSFTINDEXSPLITSIZE</code> ;Version 8.3* Added: {{Option|CACHERESTXQ}}, {{Option|TEXTINCLUDE}}, {{Option|ATTRINCLUDE}}, {{Option|FTINCLUDE}}, {{Option|STRIPNS]]ARCHIVENAME}} ;Version 8.2* Removed: <code>EVENTPORT</code>, <code>CACHEQUERY</code> ;Version 8.1* Added: {{Option|IGNORECERT}}, {{Option|RESTPATH}} ;Version 8.0* 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. ;Version 7.8.1* Updated: {{Option|ADDARCHIVES}}: parsing of TAR and TGZ files. ;Version 7.8 * Added: {{Option|CSVPARSER}}, {{Option|JSONPARSER}}, {{Option|TEXTPARSER}}, {{Option|HTMLPARSER}}, {{Option|INLINELIMIT}}, {{Option|TAILCALLS}}, {{Option|DEFAULTDB}}, {{Option|RUNQUERY}}* Updated: {{Option|WRITEBACK}} only applies to main-memory document instances.* Updated: {{Option|DEBUG}} option can be changed at runtime by users with admin permissions.* Updated: default of {{Option|INTPARSE}} is now {{Code|false}}.* Removed: <code>[[#LOGMSGMAXLENHTMLOPT</code> (replaced with {{Option|LOGMSGMAXLEN]]HTMLPARSER}}), <code>PARSEROPT</code>(replaced with parser-specific options), <code>[[#LOG|LOG]]DOTDISPLAY</code>, <code>[[#CREATEONLY|CREATEONLY]]DOTTY</code> ;Version 7.7* Added: {{Option|ADDCACHE}}, {{Option|CHECKSTRINGS}}, {{Option|FTINDEXSPLITSIZE}}, {{Option|INDEXSPLITSIZE}} ;Version 7.6* Added: {{Option|GLOBALLOCK}}* Added: store local options in configuration file after {{Code|# 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: {{Option|USER}}, {{Option|PASSWORD}}, {{Option|LOG}}, {{Option|LOGMSGMAXLEN}}, {{Option|WEBPATH}}, {{Option|RESTXQPATH}}{{Option|HTTPLOCAL}}, {{Option|CREATEONLY}}, {{Option|STRIPNS}}* Removed: {{Code|HTTPPATH}}; {{Code|HTTPPORT}}: {{Code|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: <code>[[#KEEPALIVE{{Option|KEEPALIVE]]</code>}}, <code>[[#TIMEOUT{{Option|TIMEOUT]]</code>}}: default values changed
* Removed: {{Code|WILDCARDS}}; new index supports both fuzzy and wildcard queries
* Removed: {{Code|SCORING}}; new scoring model will focus on lengths of text nodes and match options
;Version 7.2
 * Added: <code>[[#PROXYHOST{{Option|PROXYHOST]]</code>}}, <code>[[#PROXYPORT{{Option|PROXYPORT]]</code>}}, <code>[[#NONPROXYHOSTS{{Option|NONPROXYHOSTS]]</code>}}, <code>[[#HTMLOPT{{Option|HTMLOPT]]</code>}}* Updated: <code>[[#TIMEOUT{{Option|TIMEOUT]]</code>}}: ignore timeout for admin users
;Version 7.1
 * Added: <code>[[#ADDRAW{{Option|ADDRAW]]</code>}}, <code>[[#MAXLEN{{Option|MAXLEN]]</code>}}, <code>[[#MAXCATS{{Option|MAXCATS]]</code>}}, <code>[[#UPDINDEX{{Option|UPDINDEX]]</code>}}* Updated: <code>[[#BINDINGS{{Option|BINDINGS]]</code>}}
;Version 7.0
 * Added: <code>[[#SERVERHOST{{Option|SERVERHOST]]</code>}}, <code>[[#KEEPALIVE{{Option|KEEPALIVE]]</code>}}, <code>[[#AUTOFLUSH{{Option|AUTOFLUSH]]</code>}}, <code>[[#QUERYPATH{{Option|QUERYPATH]]</code>}}
administrator, editor
5

edits

Navigation menu