Author: mcbrown
Date: 2006-09-08 16:24:37 +0200 (Fri, 08 Sep 2006)
New Revision: 3300
Log:
Additional elements (values, value, choice) to set default and possible values for an
option.
Fixes to the options.xml format for consistency
More updates to the content
Modified:
trunk/mysqld-optvars/options.dtd
trunk/mysqld-optvars/options.xml
Modified: trunk/mysqld-optvars/options.dtd
===================================================================
--- trunk/mysqld-optvars/options.dtd 2006-09-08 09:59:20 UTC (rev 3299)
+++ trunk/mysqld-optvars/options.dtd 2006-09-08 14:24:37 UTC (rev 3300)
Changed blocks: 3, Lines Added: 23, Lines Deleted: 1; 1923 bytes
@@ -26,7 +26,28 @@
<!ATTLIST vartype default CDATA #IMPLIED>
<!ATTLIST vartype isdynamic (yes | no) #REQUIRED >
+<!-- Values specify the versions and value types -->
+<!ELEMENT values (value+, choice*)>
+<!ATTLIST values inversion CDATA #IMPLIED>
+<!ATTLIST values outversion CDATA #IMPLIED>
+<!ATTLIST values vartype (boolean|numeric|string|filename) #REQUIRED>
+
+<!-- For options with a set list of possible choices, use a choice element for
+each entry -->
+
+<!ELEMENT choice EMPTY>
+<!ATTLIST choice value CDATA #REQUIRED>
+
+<!-- To set a default value, or upper/lower limits, you must also specify the
+platform to which it applies -->
+
+<!ELEMENT value EMPTY>
+<!ATTLIST value platform (all|linux|windows|macosx|hpux|solaris) #REQUIRED>
+<!ATTLIST value default CDATA #IMPLIED>
+<!ATTLIST value minimum CDATA #IMPLIED>
+<!ATTLIST value maximum CDATA #IMPLIED>
+
<!ELEMENT seealso EMPTY>
<!ATTLIST seealso xref IDREF #REQUIRED>
<!ELEMENT opclass EMPTY>
@@ -40,6 +61,7 @@
<!ELEMENT cmdline (#PCDATA | format)*>
<!ELEMENT mysqloptions (#PCDATA | mysqloption)*>
<!ELEMENT shortdescription (#PCDATA)>
+<!ATTLIST shortdescription lang CDATA #REQUIRED>
<!ELEMENT engines (engine)*>
<!ATTLIST engines includes CDATA "all">
<!ELEMENT engine EMPTY>
@@ -52,7 +74,7 @@
<!ATTLIST section id (mysqld | replication | cluster) #REQUIRED>
<!ELEMENT mysqloption
( name+ , shortdescription+, section*, opclass+, engines*,
-platforms*,seealso*,incompatible*,disabledby*,deprecated?,types+,versions? )>
+platforms*,seealso*,incompatible*,disabledby*,deprecated?,types+,values?,versions? )>
<!ATTLIST mysqloption id ID #REQUIRED>
<!ELEMENT versions (#PCDATA | introduced | manual)*>
<!ELEMENT name (#PCDATA)>
Modified: trunk/mysqld-optvars/options.xml
===================================================================
--- trunk/mysqld-optvars/options.xml 2006-09-08 09:59:20 UTC (rev 3299)
+++ trunk/mysqld-optvars/options.xml 2006-09-08 14:24:37 UTC (rev 3300)
Changed blocks: 328, Lines Added: 468, Lines Deleted: 459; 147573 bytes
@@ -3,9 +3,10 @@
<mysqloptions>
<mysqloption id="binlog_format">
<name>Binlog format</name>
- <shortdescription>Specifies the format of the binary
log</shortdescription>
+ <shortdescription lang="en">Specifies the format of the binary
log</shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
+ <opclass class="replication"/>
<engines includes="all"/>
<platforms>All</platforms>
<seealso xref="log-bin-trust-function-creators"/>
@@ -15,6 +16,13 @@
<vartype class="server" isdynamic="yes"/>
<optype class="cmdline" format="--binlog-format" setvar="binlog_format"/>
</types>
+ <values vartype="string">
+ <value platform="all" default="row"/>
+ <choice value="row"/>
+ <choice value="statement"/>
+ <choice value="mixed"/>
+ </values>
+
<versions>
<introduced version="5.1.5"/>
<manual version="5.1"/>
@@ -23,7 +31,7 @@
<mysqloption id="help">
<name>Help</name>
- <shortdescription>Display help</shortdescription>
+ <shortdescription lang="en">Display help</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -45,8 +53,8 @@
<mysqloption id="abort-slave-event-count">
<name>abort-slave-event-count</name>
- <shortdescription>Option used by mysql-test for debugging and testing of
- replication.</shortdescription>
+ <shortdescription lang="en">Option used by mysql-test for debugging and testing
of
+ replication</shortdescription>
<section id="replication"/>
<opclass class="replication"/>
<engines includes="all"/>
@@ -64,8 +72,8 @@
<mysqloption id="allow-suspicious-udfs">
<name>allow-suspicious-udfs</name>
- <shortdescription>Allows use of UDFs consisting of only one symbol xxx()
- without corresponding xxx_init() or xxx_deinit().</shortdescription>
+ <shortdescription lang="en">Allows use of UDFs consisting of only one symbol
xxx()
+ without corresponding xxx_init() or xxx_deinit()</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -83,7 +91,7 @@
<mysqloption id="ansi">
<name>ansi</name>
- <shortdescription>Use ANSI SQL syntax instead of MySQL syntax.
</shortdescription>
+ <shortdescription lang="en">Use ANSI SQL syntax instead of MySQL syntax.
</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -104,7 +112,7 @@
<mysqloption id="auto-increment-increment">
<name>auto-increment-increment</name>
- <shortdescription>Auto-increment columns are incremented by this
value.</shortdescription>
+ <shortdescription lang="en">Auto-increment columns are incremented by this
value</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -122,7 +130,7 @@
</mysqloption>
<mysqloption id="auto-increment-offset">
<name>auto-increment-offset</name>
- <shortdescription>Offset added to Auto-increment columns.
</shortdescription>
+ <shortdescription lang="en">Offset added to Auto-increment columns.
</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -140,7 +148,7 @@
</mysqloption>
<mysqloption id="automatic-sp-privileges">
<name>automatic-sp-privileges</name>
- <shortdescription>Creating and dropping stored procedures alters
ACLs.</shortdescription>
+ <shortdescription lang="en">Creating and dropping stored procedures alters
ACLs</shortdescription>
<section id="mysqld"/>
<opclass class="security"/>
<engines includes="all"/>
@@ -158,7 +166,7 @@
</mysqloption>
<mysqloption id="back_log">
<name>back_log</name>
- <shortdescription>The number of outstanding connection requests MySQL can
+ <shortdescription lang="en">The number of outstanding connection requests MySQL
can
have. </shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -176,8 +184,8 @@
</mysqloption>
<mysqloption id="basedir">
<name>basedir</name>
- <shortdescription>Path to installation directory. All paths are usually
- resolved relative to this.</shortdescription>
+ <shortdescription lang="en">Path to installation directory. All paths are
usually
+ resolved relative to this</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -197,8 +205,8 @@
<mysqloption id="bdb">
<name>bdb</name>
- <shortdescription>Enable Berkeley DB (if this version of MySQL supports it).
- Disable with --skip-bdb (will save memory).</shortdescription>
+ <shortdescription lang="en">Enable Berkeley DB (if this version of MySQL
supports it).
+ Disable with --skip-bdb (will save memory)</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -218,7 +226,7 @@
</mysqloption>
<mysqloption id="bdb-home">
<name>bdb-home</name>
- <shortdescription>Berkeley home directory.</shortdescription>
+ <shortdescription lang="en">Berkeley home directory</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -238,7 +246,7 @@
</mysqloption>
<mysqloption id="bdb-lock-detect">
<name>bdb-lock-detect</name>
- <shortdescription>Berkeley lock detect.</shortdescription>
+ <shortdescription lang="en">Berkeley lock detect</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -256,7 +264,7 @@
</mysqloption>
<mysqloption id="bdb-logdir">
<name>bdb-logdir</name>
- <shortdescription>Berkeley DB log file directory.</shortdescription>
+ <shortdescription lang="en">Berkeley DB log file
directory</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -276,7 +284,7 @@
</mysqloption>
<mysqloption id="bdb-no-recover">
<name>bdb-no-recover</name>
- <shortdescription>Don't try to recover Berkeley DB tables on
start.</shortdescription>
+ <shortdescription lang="en">Don't try to recover Berkeley DB tables on
start</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -293,7 +301,7 @@
</mysqloption>
<mysqloption id="bdb-no-sync">
<name>bdb-no-sync</name>
- <shortdescription>Disables synchronous BDB log flushes</shortdescription>
+ <shortdescription lang="en">Disables synchronous BDB log
flushes</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -311,7 +319,7 @@
</mysqloption>
<mysqloption id="bdb-shared-data">
<name>bdb-shared-data</name>
- <shortdescription>Start Berkeley DB in multi-process
mode.</shortdescription>
+ <shortdescription lang="en">Start Berkeley DB in multi-process
mode</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -332,7 +340,7 @@
</mysqloption>
<mysqloption id="bdb-tmpdir">
<name>bdb-tmpdir</name>
- <shortdescription>Berkeley DB tempfile name.</shortdescription>
+ <shortdescription lang="en">Berkeley DB tempfile name</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines>
@@ -353,8 +361,8 @@
</mysqloption>
<mysqloption id="bdb_cache_size">
<name>bdb_cache_size</name>
- <shortdescription>The buffer that is allocated to cache index and rows for
- BDB tables.</shortdescription>
+ <shortdescription lang="en">The buffer that is allocated to cache index and
rows for
+ BDB tables</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -375,7 +383,7 @@
</mysqloption>
<mysqloption id="bdb_lock_max">
<name>bdb_lock_max</name>
- <shortdescription>Synonym for bdb_max_lock.</shortdescription>
+ <shortdescription lang="en">Synonym for bdb_max_lock</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -397,8 +405,8 @@
</mysqloption>
<mysqloption id="bdb_log_buffer_size">
<name>bdb_log_buffer_size</name>
- <shortdescription>The buffer that is allocated to cache index and rows for
- BDB tables.</shortdescription>
+ <shortdescription lang="en">The buffer that is allocated to cache index and
rows for
+ BDB tables</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -418,8 +426,8 @@
</mysqloption>
<mysqloption id="bdb_max_lock">
<name>bdb_max_lock</name>
- <shortdescription>The maximum number of locks you can have active on a BDB
- table.</shortdescription>
+ <shortdescription lang="en">The maximum number of locks you can have active on
a BDB
+ table</shortdescription>
<section id="mysqld"/>
<opclass class="bdb"/>
<engines>
@@ -439,8 +447,8 @@
</mysqloption>
<mysqloption id="big-tables">
<name>big-tables</name>
- <shortdescription>Allow big result sets by saving all temporary sets on
- file.</shortdescription>
+ <shortdescription lang="en">Allow big result sets by saving all temporary sets
on
+ file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -456,7 +464,7 @@
</mysqloption>
<mysqloption id="bind-address">
<name>bind-address</name>
- <shortdescription>IP address to bind to.</shortdescription>
+ <shortdescription lang="en">IP address to bind to</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<types>
@@ -471,7 +479,7 @@
</mysqloption>
<mysqloption id="binlog-do-db">
<name>binlog-do-db</name>
- <shortdescription>Limits binary logging to specific
databases.</shortdescription>
+ <shortdescription lang="en">Limits binary logging to specific
databases</shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
<engines includes="all"/>
@@ -487,8 +495,8 @@
</mysqloption>
<mysqloption id="binlog-ignore-db">
<name>binlog-ignore-db</name>
- <shortdescription>Tells the master that updates to the given database should
- not be logged tothe binary log.</shortdescription>
+ <shortdescription lang="en">Tells the master that updates to the given database
should
+ not be logged tothe binary log</shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
<engines includes="all"/>
@@ -503,7 +511,7 @@
</mysqloption>
<mysqloption id="binlog-row-event-max-size">
<name>binlog-row-event-max-size</name>
- <shortdescription/>
+ <shortdescription lang="en">Binary log max event size</shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
<engines includes="all"/>
@@ -519,7 +527,7 @@
</mysqloption>
<mysqloption id="binlog_cache_size">
<name>binlog_cache_size</name>
- <shortdescription>The size of the cache to hold the SQL statements for the
+ <shortdescription lang="en">The size of the cache to hold the SQL statements
for the
binary log during a transaction. </shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
@@ -538,7 +546,7 @@
</mysqloption>
<mysqloption id="bootstrap">
<name>bootstrap</name>
- <shortdescription>Used by mysql installation scripts. </shortdescription>
+ <shortdescription lang="en">Used by mysql installation scripts.
</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -554,7 +562,7 @@
</mysqloption>
<mysqloption id="bulk_insert_buffer_size">
<name>bulk_insert_buffer_size</name>
- <shortdescription>Size of tree cache used in bulk insert
optimisation.</shortdescription>
+ <shortdescription lang="en">Size of tree cache used in bulk insert
optimisation</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -571,8 +579,8 @@
</mysqloption>
<mysqloption id="character-set-client-handshake">
<name>character-set-client-handshake</name>
- <shortdescription>Don't ignore client side character set value sent during
- handshake.</shortdescription>
+ <shortdescription lang="en">Don't ignore client side character set value sent
during
+ handshake</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -590,7 +598,7 @@
</mysqloption>
<mysqloption id="character-set-filesystem">
<name>character-set-filesystem</name>
- <shortdescription>Set the filesystem character set.</shortdescription>
+ <shortdescription lang="en">Set the filesystem character
set</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -607,7 +615,7 @@
</mysqloption>
<mysqloption id="character-set-server">
<name>character-set-server</name>
- <shortdescription>instead). --default-collation=name Set the default
+ <shortdescription lang="en">instead). --default-collation=name Set the default
collation (deprecated option, use</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -626,7 +634,7 @@
</mysqloption>
<mysqloption id="character-sets-dir">
<name>character-sets-dir</name>
- <shortdescription>Directory where character sets are.</shortdescription>
+ <shortdescription lang="en">Directory where character sets
are</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -643,8 +651,8 @@
</mysqloption>
<mysqloption id="chroot">
<name>chroot</name>
- <shortdescription>Chroot mysqld daemon during startup.
- --collation-server=name Set the default collation.</shortdescription>
+ <shortdescription lang="en">Chroot mysqld daemon during startup.
+ --collation-server=name Set the default collation</shortdescription>
<section id="mysqld"/>
<opclass class="security"/>
<engines includes="all"/>
@@ -663,7 +671,7 @@
</mysqloption>
<mysqloption id="collation-server">
<name>collation-server</name>
- <shortdescription>Set the default collation.</shortdescription>
+ <shortdescription lang="en">Set the default collation</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -682,7 +690,7 @@
</mysqloption>
<mysqloption id="completion-type">
<name>completion-type</name>
- <shortdescription>Default completion type. </shortdescription>
+ <shortdescription lang="en">Default completion type. </shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -700,7 +708,7 @@
</mysqloption>
<mysqloption id="concurrent-insert">
<name>concurrent-insert</name>
- <shortdescription>Use concurrent insert with MyISAM.</shortdescription>
+ <shortdescription lang="en">Use concurrent insert with
MyISAM</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines>
@@ -721,8 +729,8 @@
</mysqloption>
<mysqloption id="connect_timeout">
<name>connect_timeout</name>
- <shortdescription>The number of seconds the mysqld server is waiting for a
- connect packet before responding with 'Bad handshake'.</shortdescription>
+ <shortdescription lang="en">The number of seconds the mysqld server is waiting
for a
+ connect packet before responding with 'Bad handshake'</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -741,8 +749,8 @@
</mysqloption>
<mysqloption id="console">
<name>console</name>
- <shortdescription>Write error output on screen; Don't remove the console
- window on windows.</shortdescription>
+ <shortdescription lang="en">Write error output on screen; Don't remove the
console
+ window on windows</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -759,7 +767,7 @@
</mysqloption>
<mysqloption id="core-file">
<name>core-file</name>
- <shortdescription>Write core on errors.</shortdescription>
+ <shortdescription lang="en">Write core on errors</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -776,8 +784,8 @@
</mysqloption>
<mysqloption id="crash_binlog_innodb">
<name>crash_binlog_innodb</name>
- <shortdescription>Used only for testing, to crash when writing Nth event to
- binlog.</shortdescription>
+ <shortdescription lang="en">Used only for testing, to crash when writing Nth
event to
+ binlog</shortdescription>
<section id="mysqld"/>
<opclass class="innodb"/>
<engines includes="all"/>
@@ -793,7 +801,7 @@
</mysqloption>
<mysqloption id="datadir">
<name>datadir</name>
- <shortdescription>Path to the database root.</shortdescription>
+ <shortdescription lang="en">Path to the database root</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -812,7 +820,7 @@
</mysqloption>
<mysqloption id="date_format">
<name>date_format</name>
- <shortdescription>The DATE format (For future).</shortdescription>
+ <shortdescription lang="en">The DATE format (For
future)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -829,7 +837,7 @@
</mysqloption>
<mysqloption id="datetime_format">
<name>datetime_format</name>
- <shortdescription>The DATETIME/TIMESTAMP format (for
future).</shortdescription>
+ <shortdescription lang="en">The DATETIME/TIMESTAMP format (for
future)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -846,7 +854,7 @@
</mysqloption>
<mysqloption id="default-character-set">
<name>default-character-set</name>
- <shortdescription>Set the default character set (deprecated option,
use</shortdescription>
+ <shortdescription lang="en">Set the default character set (deprecated option,
use</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -866,7 +874,7 @@
</mysqloption>
<mysqloption id="default-collation">
<name>default-collation</name>
- <shortdescription>Set the default collation (deprecated option,
use</shortdescription>
+ <shortdescription lang="en">Set the default collation (deprecated option,
use</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -884,7 +892,7 @@
</mysqloption>
<mysqloption id="default-storage-engine">
<name>default-storage-engine</name>
- <shortdescription>Set the default storage engine (table type) for
tables.</shortdescription>
+ <shortdescription lang="en">Set the default storage engine (table type) for
tables</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -901,7 +909,7 @@
</mysqloption>
<mysqloption id="default-table-type">
<name>default-table-type</name>
- <shortdescription>Use --default-storage-engine. </shortdescription>
+ <shortdescription lang="en">Use --default-storage-engine.
</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -918,7 +926,7 @@
</mysqloption>
<mysqloption id="default-time-zone">
<name>default-time-zone</name>
- <shortdescription>Set the default time zone.</shortdescription>
+ <shortdescription lang="en">Set the default time zone</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -936,7 +944,7 @@
</mysqloption>
<mysqloption id="default_week_format">
<name>default_week_format</name>
- <shortdescription>The default week format used by WEEK()
functions.</shortdescription>
+ <shortdescription lang="en">The default week format used by WEEK()
functions</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -954,7 +962,7 @@
</mysqloption>
<mysqloption id="delay-key-write">
<name>delay-key-write</name>
- <shortdescription>Type of DELAY_KEY_WRITE.</shortdescription>
+ <shortdescription lang="en">Type of DELAY_KEY_WRITE</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -970,8 +978,8 @@
</mysqloption>
<mysqloption id="delay-key-write-for-all-tables">
<name>delay-key-write-for-all-tables</name>
- <shortdescription>Don't flush key buffers between writes for any MyISAM
- table (Deprecated option, use --delay-key-write=all
instead).</shortdescription>
+ <shortdescription lang="en">Don't flush key buffers between writes for any
MyISAM
+ table (Deprecated option, use --delay-key-write=all
instead)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -987,9 +995,9 @@
</mysqloption>
<mysqloption id="delayed_insert_limit">
<name>delayed_insert_limit</name>
- <shortdescription>After inserting delayed_insert_limit rows, the INSERT
+ <shortdescription lang="en">After inserting delayed_insert_limit rows, the
INSERT
DELAYED handler will check if there are any SELECT statements pending. If
- so, it allows these to execute before continuing.</shortdescription>
+ so, it allows these to execute before continuing</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1007,8 +1015,8 @@
</mysqloption>
<mysqloption id="delayed_insert_timeout">
<name>delayed_insert_timeout</name>
- <shortdescription>How long a INSERT DELAYED thread should wait for INSERT
- statements before terminating.</shortdescription>
+ <shortdescription lang="en">How long a INSERT DELAYED thread should wait for
INSERT
+ statements before terminating</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1026,9 +1034,9 @@
</mysqloption>
<mysqloption id="delayed_queue_size">
<name>delayed_queue_size</name>
- <shortdescription>What size queue (in rows) should be allocated for handling
+ <shortdescription lang="en">What size queue (in rows) should be allocated for
handling
INSERT DELAYED. If the queue becomes full, any client that does INSERT
- DELAYED will wait until there is room in the queue again.</shortdescription>
+ DELAYED will wait until there is room in the queue again</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1046,8 +1054,8 @@
</mysqloption>
<mysqloption id="des-key-file">
<name>des-key-file</name>
- <shortdescription>Load keys for des_encrypt() and des_encrypt from given
- file.</shortdescription>
+ <shortdescription lang="en">Load keys for des_encrypt() and des_encrypt from
given
+ file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1065,8 +1073,8 @@
</mysqloption>
<mysqloption id="disconnect-slave-event-count">
<name>disconnect-slave-event-count</name>
- <shortdescription>Option used by mysql-test for debugging and testing of
- replication.</shortdescription>
+ <shortdescription lang="en">Option used by mysql-test for debugging and testing
of
+ replication</shortdescription>
<section id="replication"/>
<opclass class="replication"/>
<engines includes="all"/>
@@ -1084,8 +1092,8 @@
</mysqloption>
<mysqloption id="div_precision_increment">
<name>div_precision_increment</name>
- <shortdescription>Precision of the result of '/' operator will be increased
- on that value.</shortdescription>
+ <shortdescription lang="en">Precision of the result of '/' operator will be
increased
+ on that value</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1102,7 +1110,7 @@
</mysqloption>
<mysqloption id="enable-locking">
<name>enable-locking</name>
- <shortdescription>Deprecated option, use --external-locking
instead.</shortdescription>
+ <shortdescription lang="en">Deprecated option, use --external-locking
instead</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1122,7 +1130,7 @@
</mysqloption>
<mysqloption id="enable-pstack">
<name>enable-pstack</name>
- <shortdescription>Print a symbolic stack trace on
failure.</shortdescription>
+ <shortdescription lang="en">Print a symbolic stack trace on
failure</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1139,7 +1147,7 @@
</mysqloption>
<mysqloption id="engine-condition-pushdown">
<name>engine-condition-pushdown</name>
- <shortdescription>Push supported query conditions to the storage
engine.</shortdescription>
+ <shortdescription lang="en">Push supported query conditions to the storage
engine</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1157,7 +1165,7 @@
</mysqloption>
<mysqloption id="event-scheduler">
<name>event-scheduler</name>
- <shortdescription>Enable/disable the event scheduler.</shortdescription>
+ <shortdescription lang="en">Enable/disable the event
scheduler</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1174,7 +1182,7 @@
</mysqloption>
<mysqloption id="exit-info">
<name>exit-info</name>
- <shortdescription>Used for debugging; Use at your own
risk!</shortdescription>
+ <shortdescription lang="en">Used for debugging; Use at your own
risk!</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1192,9 +1200,9 @@
</mysqloption>
<mysqloption id="expire_logs_days">
<name>expire_logs_days</name>
- <shortdescription>If non-zero, binary logs will be purged after
+ <shortdescription lang="en">If non-zero, binary logs will be purged after
expire_logs_days days; possible purges happen at startup and at binary log
- rotation.</shortdescription>
+ rotation</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1212,7 +1220,7 @@
</mysqloption>
<mysqloption id="external-locking">
<name>external-locking</name>
- <shortdescription>Use system (external) locking.</shortdescription>
+ <shortdescription lang="en">Use system (external)
locking</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1231,7 +1239,7 @@
</mysqloption>
<mysqloption id="flush">
<name>flush</name>
- <shortdescription>Flush tables to disk between SQL
commands.</shortdescription>
+ <shortdescription lang="en">Flush tables to disk between SQL
commands</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1248,7 +1256,7 @@
</mysqloption>
<mysqloption id="flush_time">
<name>flush_time</name>
- <shortdescription>A dedicated thread is created to flush all tables at the
+ <shortdescription lang="en">A dedicated thread is created to flush all tables
at the
given interval. </shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -1266,7 +1274,7 @@
</mysqloption>
<mysqloption id="ft_boolean_syntax">
<name>ft_boolean_syntax</name>
- <shortdescription>List of operators for MATCH ... AGAINST ( ... IN BOOLEAN
+ <shortdescription lang="en">List of operators for MATCH ... AGAINST ( ... IN
BOOLEAN
MODE)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -1283,9 +1291,9 @@
</mysqloption>
<mysqloption id="ft_max_word_len">
<name>ft_max_word_len</name>
- <shortdescription>The maximum length of the word to be included in a
+ <shortdescription lang="en">The maximum length of the word to be included in a
FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this
- variable.</shortdescription>
+ variable</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1303,7 +1311,7 @@
</mysqloption>
<mysqloption id="ft_min_word_len">
<name>ft_min_word_len</name>
- <shortdescription>The minimum length of the word to be included in a
+ <shortdescription lang="en">The minimum length of the word to be included in a
FULLTEXT index. </shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -1322,7 +1330,7 @@
</mysqloption>
<mysqloption id="ft_query_expansion_limit">
<name>ft_query_expansion_limit</name>
- <shortdescription>Number of best matches to use for query
expansion</shortdescription>
+ <shortdescription lang="en">Number of best matches to use for query
expansion</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1339,7 +1347,7 @@
</mysqloption>
<mysqloption id="ft_stopword_file">
<name>ft_stopword_file</name>
- <shortdescription>Use stopwords from this file instead of built-in
list.</shortdescription>
+ <shortdescription lang="en">Use stopwords from this file instead of built-in
list</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1356,7 +1364,7 @@
</mysqloption>
<mysqloption id="gdb">
<name>gdb</name>
- <shortdescription>Set up signals usable for debugging</shortdescription>
+ <shortdescription lang="en">Set up signals usable for
debugging</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1373,7 +1381,7 @@
</mysqloption>
<mysqloption id="general-log">
<name>general-log</name>
- <shortdescription>Enable|disable general log</shortdescription>
+ <shortdescription lang="en">Enable|disable general log</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1388,7 +1396,7 @@
</mysqloption>
<mysqloption id="group_concat_max_len">
<name>group_concat_max_len</name>
- <shortdescription>The maximum length of the result of function
group_concat.</shortdescription>
+ <shortdescription lang="en">The maximum length of the result of function
group_concat</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1406,7 +1414,7 @@
</mysqloption>
<mysqloption id="init-connect">
<name>init-connect</name>
- <shortdescription>Command(s) that are executed for each new
connection</shortdescription>
+ <shortdescription lang="en">Command(s) that are executed for each new
connection</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1424,8 +1432,8 @@
</mysqloption>
<mysqloption id="init-file">
<name>init-file</name>
- <shortdescription>Read SQL commands from this file at startup.
- --init-rpl-role=name Set the replication role.</shortdescription>
+ <shortdescription lang="en">Read SQL commands from this file at startup.
+ --init-rpl-role=name Set the replication role</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1443,7 +1451,7 @@
</mysqloption>
<mysqloption id="init-rpl-role">
<name>init-rpl-role</name>
- <shortdescription>Set the replication role.</shortdescription>
+ <shortdescription lang="en">Set the replication role</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1460,7 +1468,7 @@
</mysqloption>
<mysqloption id="init-slave">
<name>init-slave</name>
- <shortdescription>Command(s) that are executed when a slave connects to this
+ <shortdescription lang="en">Command(s) that are executed when a slave connects
to this
master</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -1478,7 +1486,7 @@
</mysqloption>
<mysqloption id="innodb">
<name>innodb</name>
- <shortdescription>Enable InnoDB (if this version of MySQL supports it).
</shortdescription>
+ <shortdescription lang="en">Enable InnoDB (if this version of MySQL supports
it). </shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1496,8 +1504,8 @@
</mysqloption>
<mysqloption id="innodb_additional_mem_pool_size">
<name>innodb_additional_mem_pool_size</name>
- <shortdescription>Size of a memory pool InnoDB uses to store data dictionary
- information and other internal data structures.</shortdescription>
+ <shortdescription lang="en">Size of a memory pool InnoDB uses to store data
dictionary
+ information and other internal data structures</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1515,7 +1523,7 @@
</mysqloption>
<mysqloption id="innodb_autoextend_increment">
<name>innodb_autoextend_increment</name>
- <shortdescription>Data file autoextend increment in
megabytes</shortdescription>
+ <shortdescription lang="en">Data file autoextend increment in
megabytes</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1533,8 +1541,8 @@
</mysqloption>
<mysqloption id="innodb_buffer_pool_awe_mem_mb">
<name>innodb_buffer_pool_awe_mem_mb</name>
- <shortdescription>If Windows AWE is used, the size of InnoDB buffer pool
- allocated from the AWE memory.</shortdescription>
+ <shortdescription lang="en">If Windows AWE is used, the size of InnoDB buffer
pool
+ allocated from the AWE memory</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1550,10 +1558,11 @@
<manual version="5.1"/>
</versions>
</mysqloption>
+
<mysqloption id="innodb_buffer_pool_size">
<name>innodb_buffer_pool_size</name>
- <shortdescription>The size of the memory buffer InnoDB uses to cache data
- and indexes of its tables.</shortdescription>
+ <shortdescription lang="en">The size of the memory buffer InnoDB uses to cache
data
+ and indexes of its tables</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1571,7 +1580,7 @@
</mysqloption>
<mysqloption id="innodb_checksums">
<name>innodb_checksums</name>
- <shortdescription>Enable InnoDB checksums validation (enabled by default).
</shortdescription>
+ <shortdescription lang="en">Enable InnoDB checksums validation (enabled by
default). </shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1589,8 +1598,8 @@
</mysqloption>
<mysqloption id="innodb_commit_concurrency">
<name>innodb_commit_concurrency</name>
- <shortdescription>Helps in performance tuning in heavily concurrent
- environments.</shortdescription>
+ <shortdescription lang="en">Helps in performance tuning in heavily concurrent
+ environments</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1607,7 +1616,7 @@
</mysqloption>
<mysqloption id="innodb_concurrency_tickets">
<name>innodb_concurrency_tickets</name>
- <shortdescription>Number of times a thread is allowed to enter InnoDB within
+ <shortdescription lang="en">Number of times a thread is allowed to enter InnoDB
within
the same SQL query after it has once got the ticket</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -1625,7 +1634,7 @@
</mysqloption>
<mysqloption id="innodb_data_file_path">
<name>innodb_data_file_path</name>
- <shortdescription>Path to individual files and their
sizes.</shortdescription>
+ <shortdescription lang="en">Path to individual files and their
sizes</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1641,7 +1650,7 @@
</mysqloption>
<mysqloption id="innodb_data_home_dir">
<name>innodb_data_home_dir</name>
- <shortdescription>The common part for InnoDB table
spaces.</shortdescription>
+ <shortdescription lang="en">The common part for InnoDB table
spaces</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1649,7 +1658,7 @@
<types>
<optype class="cmdline" format="--innodb_data_home_dir=name"
setvar="innodb_data_home_dir"/>
- <vartype class="server"/>
+ <vartype class="server" isdynamic="no"/>
</types>
<versions>
<manual version="4.1"/>
@@ -1658,8 +1667,8 @@
</mysqloption>
<mysqloption id="innodb_doublewrite">
<name>innodb_doublewrite</name>
- <shortdescription>Enable InnoDB doublewrite buffer (enabled by default).
- Disable with --skip-innodb-doublewrite.</shortdescription>
+ <shortdescription lang="en">Enable InnoDB doublewrite buffer (enabled by
default).
+ Disable with --skip-innodb-doublewrite</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1675,8 +1684,8 @@
</mysqloption>
<mysqloption id="innodb_fast_shutdown">
<name>innodb_fast_shutdown</name>
- <shortdescription>Speeds up the shutdown process of the InnoDB storage
- engine. Possible values are 0, 1 (faster) or 2 (fastest -
crash-like).</shortdescription>
+ <shortdescription lang="en">Speeds up the shutdown process of the InnoDB
storage
+ engine. Possible values are 0, 1 (faster) or 2 (fastest -
crash-like)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1693,7 +1702,7 @@
</mysqloption>
<mysqloption id="innodb_file_io_threads">
<name>innodb_file_io_threads</name>
- <shortdescription>Number of file I/O threads in
InnoDB.</shortdescription>
+ <shortdescription lang="en">Number of file I/O threads in
InnoDB</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1710,8 +1719,8 @@
</mysqloption>
<mysqloption id="innodb_file_per_table">
<name>innodb_file_per_table</name>
- <shortdescription>Stores each InnoDB table to an .ibd file in the database
- dir.</shortdescription>
+ <shortdescription lang="en">Stores each InnoDB table to an .ibd file in the
database
+ dir</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1728,8 +1737,8 @@
</mysqloption>
<mysqloption id="innodb_flush_log_at_trx_commit">
<name>innodb_flush_log_at_trx_commit</name>
- <shortdescription>Set to 0 (write and flush once per second), 1 (write and
- flush at each commit) or 2 (write at commit, flush once per
second).</shortdescription>
+ <shortdescription lang="en">Set to 0 (write and flush once per second), 1
(write and
+ flush at each commit) or 2 (write at commit, flush once per
second)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1746,7 +1755,7 @@
</mysqloption>
<mysqloption id="innodb_flush_method">
<name>innodb_flush_method</name>
- <shortdescription>With which method to flush data.</shortdescription>
+ <shortdescription lang="en">With which method to flush
data</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1763,8 +1772,8 @@
</mysqloption>
<mysqloption id="innodb_force_recovery">
<name>innodb_force_recovery</name>
- <shortdescription>Helps to save your data in case the disk image of the
- database becomes corrupt.</shortdescription>
+ <shortdescription lang="en">Helps to save your data in case the disk image of
the
+ database becomes corrupt</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1781,8 +1790,8 @@
</mysqloption>
<mysqloption id="innodb_lock_wait_timeout">
<name>innodb_lock_wait_timeout</name>
- <shortdescription>Timeout in seconds an InnoDB transaction may wait for a
- lock before being rolled back.</shortdescription>
+ <shortdescription lang="en">Timeout in seconds an InnoDB transaction may wait
for a
+ lock before being rolled back</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1799,7 +1808,7 @@
</mysqloption>
<mysqloption id="innodb_locks_unsafe_for_binlog">
<name>innodb_locks_unsafe_for_binlog</name>
- <shortdescription>Force InnoDB not to use next-key locking. Instead use only
+ <shortdescription lang="en">Force InnoDB not to use next-key locking. Instead
use only
row-level locking</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -1817,7 +1826,7 @@
</mysqloption>
<mysqloption id="innodb_log_arch_dir">
<name>innodb_log_arch_dir</name>
- <shortdescription>Where full logs should be archived.</shortdescription>
+ <shortdescription lang="en">Where full logs should be
archived</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1834,7 +1843,7 @@
</mysqloption>
<mysqloption id="innodb_log_archive">
<name>innodb_log_archive</name>
- <shortdescription>Set to 1 if you want to have logs
archived.</shortdescription>
+ <shortdescription lang="en">Set to 1 if you want to have logs
archived</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1849,8 +1858,8 @@
</mysqloption>
<mysqloption id="innodb_log_buffer_size">
<name>innodb_log_buffer_size</name>
- <shortdescription>The size of the buffer which InnoDB uses to write log to
- the log files on disk.</shortdescription>
+ <shortdescription lang="en">The size of the buffer which InnoDB uses to write
log to
+ the log files on disk</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1867,7 +1876,7 @@
</mysqloption>
<mysqloption id="innodb_log_file_size">
<name>innodb_log_file_size</name>
- <shortdescription>Size of each log file in a log
group.</shortdescription>
+ <shortdescription lang="en">Size of each log file in a log
group</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1884,8 +1893,8 @@
</mysqloption>
<mysqloption id="innodb_log_files_in_group">
<name>innodb_log_files_in_group</name>
- <shortdescription>Number of log files in the log group. InnoDB writes to the
- files in a circular fashion. Value 3 is recommended here.</shortdescription>
+ <shortdescription lang="en">Number of log files in the log group. InnoDB writes
to the
+ files in a circular fashion. Value 3 is recommended here</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1902,7 +1911,7 @@
</mysqloption>
<mysqloption id="innodb_log_group_home_dir">
<name>innodb_log_group_home_dir</name>
- <shortdescription>Path to InnoDB log files.</shortdescription>
+ <shortdescription lang="en">Path to InnoDB log files</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1919,7 +1928,7 @@
</mysqloption>
<mysqloption id="innodb_max_dirty_pages_pct">
<name>innodb_max_dirty_pages_pct</name>
- <shortdescription>Percentage of dirty pages allowed in
bufferpool.</shortdescription>
+ <shortdescription lang="en">Percentage of dirty pages allowed in
bufferpool</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1936,7 +1945,7 @@
</mysqloption>
<mysqloption id="innodb_max_purge_lag">
<name>innodb_max_purge_lag</name>
- <shortdescription>Desired maximum length of the purge queue (0 = no
limit)</shortdescription>
+ <shortdescription lang="en">Desired maximum length of the purge queue (0 = no
limit)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1953,8 +1962,8 @@
</mysqloption>
<mysqloption id="innodb_mirrored_log_groups">
<name>innodb_mirrored_log_groups</name>
- <shortdescription>Number of identical copies of log groups we keep for the
- database. Currently this should be set to 1.</shortdescription>
+ <shortdescription lang="en">Number of identical copies of log groups we keep
for the
+ database. Currently this should be set to 1</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1971,8 +1980,8 @@
</mysqloption>
<mysqloption id="innodb_open_files">
<name>innodb_open_files</name>
- <shortdescription>How many files at the maximum InnoDB keeps open at the
- same time.</shortdescription>
+ <shortdescription lang="en">How many files at the maximum InnoDB keeps open at
the
+ same time</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -1989,8 +1998,8 @@
</mysqloption>
<mysqloption id="innodb_safe_binlog">
<name>innodb_safe_binlog</name>
- <shortdescription>After a crash recovery by InnoDB, truncate the binary log
- after the last not-rolled-back statement/transaction.</shortdescription>
+ <shortdescription lang="en">After a crash recovery by InnoDB, truncate the
binary log
+ after the last not-rolled-back statement/transaction</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2006,7 +2015,7 @@
</mysqloption>
<mysqloption id="innodb_status_file">
<name>innodb_status_file</name>
- <shortdescription>Enable SHOW INNODB STATUS output in the
+ <shortdescription lang="en">Enable SHOW INNODB STATUS output in the
innodb_status.[pid] file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -2024,7 +2033,7 @@
</mysqloption>
<mysqloption id="innodb_support_xa">
<name>innodb_support_xa</name>
- <shortdescription>Enable InnoDB support for the XA two-phase commit
+ <shortdescription lang="en">Enable InnoDB support for the XA two-phase commit
--innodb_table_locks Enable InnoDB locking in LOCK TABLES</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -2042,7 +2051,7 @@
</mysqloption>
<mysqloption id="innodb_sync_spin_loops">
<name>innodb_sync_spin_loops</name>
- <shortdescription>Count of spin-loop rounds in InnoDB
mutexes</shortdescription>
+ <shortdescription lang="en">Count of spin-loop rounds in InnoDB
mutexes</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2058,7 +2067,7 @@
</mysqloption>
<mysqloption id="innodb_table_locks">
<name>innodb_table_locks</name>
- <shortdescription>Enable InnoDB locking in LOCK TABLES</shortdescription>
+ <shortdescription lang="en">Enable InnoDB locking in LOCK
TABLES</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2075,9 +2084,9 @@
</mysqloption>
<mysqloption id="innodb_thread_concurrency">
<name>innodb_thread_concurrency</name>
- <shortdescription>Helps in performance tuning in heavily concurrent
+ <shortdescription lang="en">Helps in performance tuning in heavily concurrent
environments. Sets the maximum number of threads allowed inside InnoDB.
- Value 0 will disable the thread throttling.</shortdescription>
+ Value 0 will disable the thread throttling</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2094,7 +2103,7 @@
</mysqloption>
<mysqloption id="innodb_thread_sleep_delay">
<name>innodb_thread_sleep_delay</name>
- <shortdescription>Time of innodb thread sleeping before joining InnoDB queue
+ <shortdescription lang="en">Time of innodb thread sleeping before joining
InnoDB queue
(usec). Value 0 disable a sleep</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -2111,8 +2120,8 @@
</mysqloption>
<mysqloption id="interactive_timeout">
<name>interactive_timeout</name>
- <shortdescription>The number of seconds the server waits for activity on an
- interactive connection before closing it.</shortdescription>
+ <shortdescription lang="en">The number of seconds the server waits for activity
on an
+ interactive connection before closing it</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2129,7 +2138,7 @@
</mysqloption>
<mysqloption id="isam">
<name>isam</name>
- <shortdescription>Obsolete. ISAM storage engine is no longer
supported.</shortdescription>
+ <shortdescription lang="en">Obsolete. ISAM storage engine is no longer
supported</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2146,7 +2155,7 @@
</mysqloption>
<mysqloption id="join_buffer_size">
<name>join_buffer_size</name>
- <shortdescription>The size of the buffer that is used for full
joins.</shortdescription>
+ <shortdescription lang="en">The size of the buffer that is used for full
joins</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2163,7 +2172,7 @@
</mysqloption>
<mysqloption id="key_buffer_size">
<name>key_buffer_size</name>
- <shortdescription>The size of the buffer used for index blocks for MyISAM
+ <shortdescription lang="en">The size of the buffer used for index blocks for
MyISAM
tables. Increase this to get better index handling (for all reads and
multiple writes) to as much as you can afford; 64M on a 256M machine that
mainly runs MySQL is quite common. --key_cache_age_threshold=# This
@@ -2190,7 +2199,7 @@
</mysqloption>
<mysqloption id="key_cache_age_threshold">
<name>key_cache_age_threshold</name>
- <shortdescription>This characterizes the number of hits a hot block has to
+ <shortdescription lang="en">This characterizes the number of hits a hot block
has to
be untouched until it is considered aged enough to be downgraded to a warm
block. This specifies the percentage ratio of that number of hits to the
total number of blocks in key cache</shortdescription>
@@ -2210,7 +2219,7 @@
</mysqloption>
<mysqloption id="key_cache_block_size">
<name>key_cache_block_size</name>
- <shortdescription>The default size of key cache blocks</shortdescription>
+ <shortdescription lang="en">The default size of key cache
blocks</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2227,7 +2236,7 @@
</mysqloption>
<mysqloption id="key_cache_division_limit">
<name>key_cache_division_limit</name>
- <shortdescription>The minimum percentage of warm blocks in key
cache</shortdescription>
+ <shortdescription lang="en">The minimum percentage of warm blocks in key
cache</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2244,8 +2253,8 @@
</mysqloption>
<mysqloption id="language">
<name>language</name>
- <shortdescription>Client error messages in given language. May be given as a
- full path.</shortdescription>
+ <shortdescription lang="en">Client error messages in given language. May be
given as a
+ full path</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2264,8 +2273,8 @@
</mysqloption>
<mysqloption id="large-pages">
<name>large-pages</name>
- <shortdescription>Enable support for large pages. Disable with
- --skip-large-pages.</shortdescription>
+ <shortdescription lang="en">Enable support for large pages. Disable with
+ --skip-large-pages</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2281,7 +2290,7 @@
</mysqloption>
<mysqloption id="local-infile">
<name>local-infile</name>
- <shortdescription>Enable/disable LOAD DATA LOCAL INFILE (takes values
1|0).</shortdescription>
+ <shortdescription lang="en">Enable/disable LOAD DATA LOCAL INFILE (takes values
1|0)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2298,7 +2307,7 @@
</mysqloption>
<mysqloption id="log">
<name>log</name>
- <shortdescription>Log connections and queries to file.</shortdescription>
+ <shortdescription lang="en">Log connections and queries to
file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2317,7 +2326,7 @@
</mysqloption>
<mysqloption id="log-bin">
<name>log-bin</name>
- <shortdescription>instead.</shortdescription>
+ <shortdescription lang="en">instead</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2336,7 +2345,7 @@
</mysqloption>
<mysqloption id="log-bin-index">
<name>log-bin-index</name>
- <shortdescription>File that holds the names for last binary log
files.</shortdescription>
+ <shortdescription lang="en">File that holds the names for last binary log
files</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2353,9 +2362,9 @@
</mysqloption>
<mysqloption id="log-bin-trust-function-creators">
<name>log-bin-trust-function-creators</name>
- <shortdescription>If equal to 0 (the default), then when --log-bin is used,
+ <shortdescription lang="en">If equal to 0 (the default), then when --log-bin is
used,
creation of a stored function is allowed only to users having the SUPER
- privilege and only if this function may not break binary
logging.</shortdescription>
+ privilege and only if this function may not break binary
logging</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2371,7 +2380,7 @@
</mysqloption>
<mysqloption id="log-bin-trust-routine-creators">
<name>log-bin-trust-routine-creators</name>
- <shortdescription>(deprecated) Use
log-bin-trust-function-creators.</shortdescription>
+ <shortdescription lang="en">(deprecated) Use
log-bin-trust-function-creators</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2387,7 +2396,7 @@
</mysqloption>
<mysqloption id="log-error">
<name>log-error</name>
- <shortdescription>Error log file.</shortdescription>
+ <shortdescription lang="en">Error log file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2404,7 +2413,7 @@
</mysqloption>
<mysqloption id="log-isam">
<name>log-isam</name>
- <shortdescription>Log all MyISAM changes to file.</shortdescription>
+ <shortdescription lang="en">Log all MyISAM changes to
file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2421,8 +2430,8 @@
</mysqloption>
<mysqloption id="log-long-format">
<name>log-long-format</name>
- <shortdescription>Log some extra information to update log. Please note that
- this option is deprecated; see --log-short-format option.</shortdescription>
+ <shortdescription lang="en">Log some extra information to update log. Please
note that
+ this option is deprecated; see --log-short-format option</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2439,9 +2448,9 @@
</mysqloption>
<mysqloption id="log-output">
<name>log-output</name>
- <shortdescription>Syntax: log-output[=value[,value...]], where "value" could
+ <shortdescription lang="en">Syntax: log-output[=value[,value...]], where
"value" could
be TABLE, FILE or NONE. --log-queries-not-using-indexes Log queries that
- are executed without benefit of any index to the slow log if it is
open.</shortdescription>
+ are executed without benefit of any index to the slow log if it is
open</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2456,8 +2465,8 @@
</mysqloption>
<mysqloption id="log-queries-not-using-indexes">
<name>log-queries-not-using-indexes</name>
- <shortdescription>Log queries that are executed without benefit of any index
- to the slow log if it is open.</shortdescription>
+ <shortdescription lang="en">Log queries that are executed without benefit of
any index
+ to the slow log if it is open</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2474,7 +2483,7 @@
</mysqloption>
<mysqloption id="log-short-format">
<name>log-short-format</name>
- <shortdescription>Don't log extra information to update and slow-query
logs.</shortdescription>
+ <shortdescription lang="en">Don't log extra information to update and
slow-query logs</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2492,7 +2501,7 @@
</mysqloption>
<mysqloption id="log-slave-updates">
<name>log-slave-updates</name>
- <shortdescription>is used. --replicate-wild-do-table=name Tells the slave
+ <shortdescription lang="en">is used. --replicate-wild-do-table=name Tells the
slave
thread to restrict replication to the tables that match the specified
wildcard pattern. To specify more than one table, use the directive
multiple times, once for each table. This will work for cross-database
@@ -2504,7 +2513,7 @@
multiple times, once for each table. This will work for cross-database
updates. Example: replicate-wild-ignore-table=foo%.bar% will not do
updates to tables in databases that start with foo and whose table names
- start with bar.</shortdescription>
+ start with bar</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2525,8 +2534,8 @@
</mysqloption>
<mysqloption id="log-slow-admin-statements">
<name>log-slow-admin-statements</name>
- <shortdescription>Log slow OPTIMIZE, ANALYZE, ALTER and other administrative
- statements to the slow log if it is open.</shortdescription>
+ <shortdescription lang="en">Log slow OPTIMIZE, ANALYZE, ALTER and other
administrative
+ statements to the slow log if it is open</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2543,9 +2552,9 @@
</mysqloption>
<mysqloption id="log-slow-queries">
<name>log-slow-queries</name>
- <shortdescription>Log slow queries to this log file. Defaults logging to
+ <shortdescription lang="en">Log slow queries to this log file. Defaults logging
to
hostname-slow.log file. Must be enabled to activate other slow log
- options.</shortdescription>
+ options</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2562,7 +2571,7 @@
</mysqloption>
<mysqloption id="log-tc">
<name>log-tc</name>
- <shortdescription>Path to transaction coordinator log (used for transactions
+ <shortdescription lang="en">Path to transaction coordinator log (used for
transactions
that affect more than one storage engine, when binary log is
disabled)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -2579,7 +2588,7 @@
</mysqloption>
<mysqloption id="log-tc-size">
<name>log-tc-size</name>
- <shortdescription>Size of transaction coordinator log.</shortdescription>
+ <shortdescription lang="en">Size of transaction coordinator
log</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2595,7 +2604,7 @@
</mysqloption>
<mysqloption id="log-update">
<name>log-update</name>
- <shortdescription>The update log is deprecated since version 5.0, is
+ <shortdescription lang="en">The update log is deprecated since version 5.0, is
replaced by the binary log and this option justs turns on</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -2613,7 +2622,7 @@
</mysqloption>
<mysqloption id="log-warnings">
<name>log-warnings</name>
- <shortdescription>Log some not critical warnings to the log
file.</shortdescription>
+ <shortdescription lang="en">Log some not critical warnings to the log
file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2631,13 +2640,13 @@
</mysqloption>
<mysqloption id="long_query_time">
<name>long_query_time</name>
- <shortdescription>Log all queries that have taken more than long_query_time
+ <shortdescription lang="en">Log all queries that have taken more than
long_query_time
seconds to execute to file. --lower_case_table_names[=#] If set to 1 table
names are stored in lowercase on disk and table names will be
case-insensitive. Should be set to 2 if you are using a case insensitive
file system --max_allowed_packet=# Max packetlength to send/receive from
to server. --max_binlog_cache_size=# Can be used to restrict the total
- size used to cache a multi-transaction query.</shortdescription>
+ size used to cache a multi-transaction query</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2655,7 +2664,7 @@
</mysqloption>
<mysqloption id="low-priority-updates">
<name>low-priority-updates</name>
- <shortdescription>INSERT/DELETE/UPDATE has lower priority than
selects.</shortdescription>
+ <shortdescription lang="en">INSERT/DELETE/UPDATE has lower priority than
selects</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2672,7 +2681,7 @@
</mysqloption>
<mysqloption id="lower_case_table_names">
<name>lower_case_table_names</name>
- <shortdescription>If set to 1 table names are stored in lowercase on disk
+ <shortdescription lang="en">If set to 1 table names are stored in lowercase on
disk
and table names will be case-insensitive. Should be set to 2 if you are
using a case insensitive file system</shortdescription>
<section id="mysqld"/>
@@ -2691,9 +2700,9 @@
</mysqloption>
<mysqloption id="master-connect-retry">
<name>master-connect-retry</name>
- <shortdescription>The number of seconds the slave thread will sleep before
+ <shortdescription lang="en">The number of seconds the slave thread will sleep
before
retrying to connect to the master in case the master goes down or the
- connection is lost.</shortdescription>
+ connection is lost</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2710,7 +2719,7 @@
</mysqloption>
<mysqloption id="master-host">
<name>master-host</name>
- <shortdescription>Master hostname or IP address for replication. If not set,
+ <shortdescription lang="en">Master hostname or IP address for replication. If
not set,
the slave thread will not be started. Note that the setting of master-host
will be ignored if there exists a valid master.info file.
--master-info-file=name The location and name of the file that remembers
@@ -2718,7 +2727,7 @@
binlogs. --master-password=name The password the slave thread will
authenticate with when connecting to the master. If not set, an empty
password is assumed.The value in master.info will take precedence if it
- can be read.</shortdescription>
+ can be read</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2735,8 +2744,8 @@
</mysqloption>
<mysqloption id="master-info-file">
<name>master-info-file</name>
- <shortdescription>The location and name of the file that remembers the
- master and where the I/O replication thread is in the master's
binlogs.</shortdescription>
+ <shortdescription lang="en">The location and name of the file that remembers
the
+ master and where the I/O replication thread is in the master's
binlogs</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2753,9 +2762,9 @@
</mysqloption>
<mysqloption id="master-password">
<name>master-password</name>
- <shortdescription>The password the slave thread will authenticate with when
+ <shortdescription lang="en">The password the slave thread will authenticate
with when
connecting to the master. If not set, an empty password is assumed.The
- value in master.info will take precedence if it can be
read.</shortdescription>
+ value in master.info will take precedence if it can be
read</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2772,11 +2781,11 @@
</mysqloption>
<mysqloption id="master-port">
<name>master-port</name>
- <shortdescription>The port the master is listening on. If not set, the
+ <shortdescription lang="en">The port the master is listening on. If not set,
the
compiled setting of MYSQL_PORT is assumed. If you have not tinkered with
configure options, this should be 3306. The value in master.info will take
precedence if it can be read. --master-retry-count=# The number of tries
- the slave will make to connect to the master before giving
up.</shortdescription>
+ the slave will make to connect to the master before giving
up</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2793,8 +2802,8 @@
</mysqloption>
<mysqloption id="master-retry-count">
<name>master-retry-count</name>
- <shortdescription>The number of tries the slave will make to connect to the
- master before giving up.</shortdescription>
+ <shortdescription lang="en">The number of tries the slave will make to connect
to the
+ master before giving up</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2811,14 +2820,14 @@
</mysqloption>
<mysqloption id="master-ssl">
<name>master-ssl</name>
- <shortdescription>Enable the slave to connect to the master using SSL.
+ <shortdescription lang="en">Enable the slave to connect to the master using
SSL.
--master-ssl-ca[=name] Master SSL CA file. Only applies if you have
enabled master-ssl. --master-ssl-capath[=name] Master SSL CA path. Only
applies if you have enabled master-ssl. --master-ssl-cert[=name] Master
SSL certificate file name. Only applies if you have enabled master-ssl
--master-ssl-cipher[=name] Master SSL cipher. Only applies if you have
enabled master-ssl. --master-ssl-key[=name] Master SSL keyfile name. Only
- applies if you have enabled master-ssl.</shortdescription>
+ applies if you have enabled master-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2835,8 +2844,8 @@
</mysqloption>
<mysqloption id="master-ssl-ca">
<name>master-ssl-ca</name>
- <shortdescription>Master SSL CA file. Only applies if you have enabled
- master-ssl.</shortdescription>
+ <shortdescription lang="en">Master SSL CA file. Only applies if you have
enabled
+ master-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2853,8 +2862,8 @@
</mysqloption>
<mysqloption id="master-ssl-capath">
<name>master-ssl-capath</name>
- <shortdescription>Master SSL CA path. Only applies if you have enabled
- master-ssl.</shortdescription>
+ <shortdescription lang="en">Master SSL CA path. Only applies if you have
enabled
+ master-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2871,7 +2880,7 @@
</mysqloption>
<mysqloption id="master-ssl-cert">
<name>master-ssl-cert</name>
- <shortdescription>Master SSL certificate file name. Only applies if you have
+ <shortdescription lang="en">Master SSL certificate file name. Only applies if
you have
enabled master-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -2889,8 +2898,8 @@
</mysqloption>
<mysqloption id="master-ssl-cipher">
<name>master-ssl-cipher</name>
- <shortdescription>Master SSL cipher. Only applies if you have enabled
- master-ssl.</shortdescription>
+ <shortdescription lang="en">Master SSL cipher. Only applies if you have enabled
+ master-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2907,8 +2916,8 @@
</mysqloption>
<mysqloption id="master-ssl-key">
<name>master-ssl-key</name>
- <shortdescription>Master SSL keyfile name. Only applies if you have enabled
- master-ssl.</shortdescription>
+ <shortdescription lang="en">Master SSL keyfile name. Only applies if you have
enabled
+ master-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2925,11 +2934,11 @@
</mysqloption>
<mysqloption id="master-user">
<name>master-user</name>
- <shortdescription>The username the slave thread will use for authentication
+ <shortdescription lang="en">The username the slave thread will use for
authentication
when connecting to the master. The user must have FILE privilege. If the
master user is not set, user test is assumed. The value in master.info
will take precedence if it can be read. --max-binlog-dump-events=# Option
- used by mysql-test for debugging and testing of
replication.</shortdescription>
+ used by mysql-test for debugging and testing of
replication</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2946,8 +2955,8 @@
</mysqloption>
<mysqloption id="max-binlog-dump-events">
<name>max-binlog-dump-events</name>
- <shortdescription>Option used by mysql-test for debugging and testing of
- replication.</shortdescription>
+ <shortdescription lang="en">Option used by mysql-test for debugging and testing
of
+ replication</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2964,7 +2973,7 @@
</mysqloption>
<mysqloption id="max_allowed_packet">
<name>max_allowed_packet</name>
- <shortdescription>Max packetlength to send/receive from to
server.</shortdescription>
+ <shortdescription lang="en">Max packetlength to send/receive from to
server</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2981,8 +2990,8 @@
</mysqloption>
<mysqloption id="max_binlog_cache_size">
<name>max_binlog_cache_size</name>
- <shortdescription>Can be used to restrict the total size used to cache a
- multi-transaction query.</shortdescription>
+ <shortdescription lang="en">Can be used to restrict the total size used to
cache a
+ multi-transaction query</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -2999,11 +3008,11 @@
</mysqloption>
<mysqloption id="max_binlog_size">
<name>max_binlog_size</name>
- <shortdescription>Binary log will be rotated automatically when the size
+ <shortdescription lang="en">Binary log will be rotated automatically when the
size
exceeds this value. Will also apply to relay logs if max_relay_log_size is
0. The minimum value for this variable is 4096. --max_connect_errors=# If
there is more than this number of interrupted connections from a host this
- host will be blocked from further connections.</shortdescription>
+ host will be blocked from further connections</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3021,9 +3030,9 @@
</mysqloption>
<mysqloption id="max_connect_errors">
<name>max_connect_errors</name>
- <shortdescription>If there is more than this number of interrupted
+ <shortdescription lang="en">If there is more than this number of interrupted
connections from a host this host will be blocked from further
- connections.</shortdescription>
+ connections</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3040,10 +3049,10 @@
</mysqloption>
<mysqloption id="max_connections">
<name>max_connections</name>
- <shortdescription>The number of simultaneous clients allowed.
+ <shortdescription lang="en">The number of simultaneous clients allowed.
--max_delayed_threads=# Don't start more than this number of threads to
handle INSERT DELAYED statements. If set to zero, which means INSERT
- DELAYED is not used.</shortdescription>
+ DELAYED is not used</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3061,9 +3070,9 @@
</mysqloption>
<mysqloption id="max_delayed_threads">
<name>max_delayed_threads</name>
- <shortdescription>Don't start more than this number of threads to handle
+ <shortdescription lang="en">Don't start more than this number of threads to
handle
INSERT DELAYED statements. If set to zero, which means INSERT DELAYED is
- not used.</shortdescription>
+ not used</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3080,9 +3089,9 @@
</mysqloption>
<mysqloption id="max_error_count">
<name>max_error_count</name>
- <shortdescription>Max number of errors/warnings to store for a statement.
+ <shortdescription lang="en">Max number of errors/warnings to store for a
statement.
--max_heap_table_size=# Don't allow creation of heap tables bigger than
- this.</shortdescription>
+ this</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3100,7 +3109,7 @@
</mysqloption>
<mysqloption id="max_heap_table_size">
<name>max_heap_table_size</name>
- <shortdescription>Don't allow creation of heap tables bigger than
this.</shortdescription>
+ <shortdescription lang="en">Don't allow creation of heap tables bigger than
this</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3117,7 +3126,7 @@
</mysqloption>
<mysqloption id="max_join_size">
<name>max_join_size</name>
- <shortdescription>Joins that are probably going to read more than
+ <shortdescription lang="en">Joins that are probably going to read more than
max_join_size records return an error. --max_length_for_sort_data=# Max
number of bytes in sorted records. --max_prepared_stmt_count=# Maximum
number of prepared statements in the server. --max_relay_log_size=# If
@@ -3142,7 +3151,7 @@
</mysqloption>
<mysqloption id="max_length_for_sort_data">
<name>max_length_for_sort_data</name>
- <shortdescription>Max number of bytes in sorted
records.</shortdescription>
+ <shortdescription lang="en">Max number of bytes in sorted
records</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3159,7 +3168,7 @@
</mysqloption>
<mysqloption id="max_prepared_stmt_count">
<name>max_prepared_stmt_count</name>
- <shortdescription>Maximum number of prepared statements in the
server.</shortdescription>
+ <shortdescription lang="en">Maximum number of prepared statements in the
server</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3176,9 +3185,9 @@
</mysqloption>
<mysqloption id="max_relay_log_size">
<name>max_relay_log_size</name>
- <shortdescription>If non-zero: relay log will be rotated automatically when
+ <shortdescription lang="en">If non-zero: relay log will be rotated
automatically when
the size exceeds this value; if zero (the default): when the size exceeds
- max_binlog_size. 0 excepted, the minimum value for this variable is
4096.</shortdescription>
+ max_binlog_size. 0 excepted, the minimum value for this variable is
4096</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3195,7 +3204,7 @@
</mysqloption>
<mysqloption id="max_seeks_for_key">
<name>max_seeks_for_key</name>
- <shortdescription>Limit assumed max number of seeks when looking up rows
+ <shortdescription lang="en">Limit assumed max number of seeks when looking up
rows
based on a key</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -3213,10 +3222,10 @@
</mysqloption>
<mysqloption id="max_sort_length">
<name>max_sort_length</name>
- <shortdescription>The number of bytes to use when sorting BLOB or TEXT
+ <shortdescription lang="en">The number of bytes to use when sorting BLOB or
TEXT
values (only the first max_sort_length bytes of each value are used; the
rest are ignored). --max_sp_recursion_depth[=#] Maximum stored procedure
- recursion depth. (discussed with docs).</shortdescription>
+ recursion depth. (discussed with docs)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3234,8 +3243,8 @@
</mysqloption>
<mysqloption id="max_sp_recursion_depth">
<name>max_sp_recursion_depth</name>
- <shortdescription>Maximum stored procedure recursion depth. (discussed with
- docs).</shortdescription>
+ <shortdescription lang="en">Maximum stored procedure recursion depth.
(discussed with
+ docs)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3251,7 +3260,7 @@
</mysqloption>
<mysqloption id="max_tmp_tables">
<name>max_tmp_tables</name>
- <shortdescription>Maximum number of temporary tables a client can keep open
+ <shortdescription lang="en">Maximum number of temporary tables a client can
keep open
at a time. --max_user_connections=# The maximum number of active
connections for a single user (0 = no limit). --max_write_lock_count=#
After this many write locks, allow some read locks to run in between.
@@ -3265,7 +3274,7 @@
tables. The value of 1 disables parallel repair.
--myisam_sort_buffer_size=# The buffer that is allocated when sorting the
index when doing a REPAIR or when creating indexes with CREATE INDEX or
- ALTER TABLE.</shortdescription>
+ ALTER TABLE</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3283,8 +3292,8 @@
</mysqloption>
<mysqloption id="max_user_connections">
<name>max_user_connections</name>
- <shortdescription>The maximum number of active connections for a single user
- (0 = no limit).</shortdescription>
+ <shortdescription lang="en">The maximum number of active connections for a
single user
+ (0 = no limit)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3301,8 +3310,8 @@
</mysqloption>
<mysqloption id="max_write_lock_count">
<name>max_write_lock_count</name>
- <shortdescription>After this many write locks, allow some read locks to run
- in between.</shortdescription>
+ <shortdescription lang="en">After this many write locks, allow some read locks
to run
+ in between</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3319,7 +3328,7 @@
</mysqloption>
<mysqloption id="memlock">
<name>memlock</name>
- <shortdescription>Lock mysqld in memory.</shortdescription>
+ <shortdescription lang="en">Lock mysqld in memory</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3336,9 +3345,9 @@
</mysqloption>
<mysqloption id="merge">
<name>merge</name>
- <shortdescription>Enable Merge storage engine. Disable with --skip-merge.
+ <shortdescription lang="en">Enable Merge storage engine. Disable with
--skip-merge.
--myisam-recover[=name] Syntax: myisam-recover[=option[,option...]], where
- option can be DEFAULT, BACKUP, FORCE or QUICK.</shortdescription>
+ option can be DEFAULT, BACKUP, FORCE or QUICK</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3354,7 +3363,7 @@
</mysqloption>
<mysqloption id="multi_range_count">
<name>multi_range_count</name>
- <shortdescription>Number of key ranges to request at
once.</shortdescription>
+ <shortdescription lang="en">Number of key ranges to request at
once</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3370,8 +3379,8 @@
</mysqloption>
<mysqloption id="myisam-recover">
<name>myisam-recover</name>
- <shortdescription>Syntax: myisam-recover[=option[,option...]], where option
- can be DEFAULT, BACKUP, FORCE or QUICK.</shortdescription>
+ <shortdescription lang="en">Syntax: myisam-recover[=option[,option...]], where
option
+ can be DEFAULT, BACKUP, FORCE or QUICK</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3388,7 +3397,7 @@
</mysqloption>
<mysqloption id="myisam_block_size">
<name>myisam_block_size</name>
- <shortdescription>Block size to be used for MyISAM index
pages.</shortdescription>
+ <shortdescription lang="en">Block size to be used for MyISAM index
pages</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3405,7 +3414,7 @@
</mysqloption>
<mysqloption id="myisam_data_pointer_size">
<name>myisam_data_pointer_size</name>
- <shortdescription>Default pointer size to be used for MyISAM
tables.</shortdescription>
+ <shortdescription lang="en">Default pointer size to be used for MyISAM
tables</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3422,7 +3431,7 @@
</mysqloption>
<mysqloption id="myisam_max_extra_sort_file_size">
<name>myisam_max_extra_sort_file_size</name>
- <shortdescription>Deprecated option</shortdescription>
+ <shortdescription lang="en">Deprecated option</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3439,8 +3448,8 @@
</mysqloption>
<mysqloption id="myisam_max_sort_file_size">
<name>myisam_max_sort_file_size</name>
- <shortdescription>Don't use the fast sort index method to created index if
- the temporary file would get bigger than this.</shortdescription>
+ <shortdescription lang="en">Don't use the fast sort index method to created
index if
+ the temporary file would get bigger than this</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3457,8 +3466,8 @@
</mysqloption>
<mysqloption id="myisam_repair_threads">
<name>myisam_repair_threads</name>
- <shortdescription>Number of threads to use when repairing MyISAM tables. The
- value of 1 disables parallel repair.</shortdescription>
+ <shortdescription lang="en">Number of threads to use when repairing MyISAM
tables. The
+ value of 1 disables parallel repair</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3475,8 +3484,8 @@
</mysqloption>
<mysqloption id="myisam_sort_buffer_size">
<name>myisam_sort_buffer_size</name>
- <shortdescription>The buffer that is allocated when sorting the index when
- doing a REPAIR or when creating indexes with CREATE INDEX or ALTER
TABLE.</shortdescription>
+ <shortdescription lang="en">The buffer that is allocated when sorting the index
when
+ doing a REPAIR or when creating indexes with CREATE INDEX or ALTER
TABLE</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3493,10 +3502,10 @@
</mysqloption>
<mysqloption id="myisam_stats_method">
<name>myisam_stats_method</name>
- <shortdescription>Specifies how MyISAM index statistics collection code
+ <shortdescription lang="en">Specifies how MyISAM index statistics collection
code
should threat NULLs. Possible values of name are "nulls_unequal" (default
behavior for 4.1/5.0), "nulls_equal" (emulate 4.0 behavior), and
- "nulls_ignored".</shortdescription>
+ "nulls_ignored"</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3513,13 +3522,13 @@
</mysqloption>
<mysqloption id="myisam_use_mmap">
<name>myisam_use_mmap</name>
- <shortdescription>Use memory mapping for reading and writing MyISAM tables
+ <shortdescription lang="en">Use memory mapping for reading and writing MyISAM
tables
--myisam_stats_method=name Specifies how MyISAM index statistics
collection code should threat NULLs. Possible values of name are
"nulls_unequal" (default behavior for 4.1/5.0), "nulls_equal" (emulate 4.0
behavior), and "nulls_ignored". --net_buffer_length=# Buffer length for
TCP/IP and socket communication. --net_read_timeout=# Number of seconds to
- wait for more data from a connection before aborting the
read.</shortdescription>
+ wait for more data from a connection before aborting the
read</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3595,8 +3604,8 @@
</mysqloption>
<mysqloption id="ndb-force-send">
<name>ndb-force-send</name>
- <shortdescription>Force send of buffers to ndb immediately without waiting
- for other threads.</shortdescription>
+ <shortdescription lang="en">Force send of buffers to ndb immediately without
waiting
+ for other threads</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3658,7 +3667,7 @@
</mysqloption>
<mysqloption id="ndb-nodeid">
<name>ndb-nodeid</name>
- <shortdescription>Nodeid for this mysqlserver in the cluster.
+ <shortdescription lang="en">Nodeid for this mysqlserver in the cluster.
--ndb-autoincrement-prefetch-sz=# Specify number of autoincrement values
that are prefetched. --ndb-distribution=name Default distribution for new
tables in ndb</shortdescription>
@@ -3712,7 +3721,7 @@
</mysqloption>
<mysqloption id="ndb-shm">
<name>ndb-shm</name>
- <shortdescription>Use shared memory connections when available.
+ <shortdescription lang="en">Use shared memory connections when available.
--ndb-optimized-node-selection Select nodes for transactions in a more
optimal way. --ndb-cache-check-time=# A dedicated thread is created to, at
the given millisecons interval, invalidate the query cache if another
@@ -3723,7 +3732,7 @@
always. --ndb-index-stat-update-freq[=#] How often, in the long run, to
query db nodes instead of statistics cache. For example 20 means every
20th time. --ndb-use-copying-alter-table Force ndbcluster to always copy
- tables at alter table (should only be used if on-line alter table
fails).</shortdescription>
+ tables at alter table (should only be used if on-line alter table
fails)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3762,7 +3771,7 @@
</mysqloption>
<mysqloption id="ndb_force_send">
<name>ndb_force_send</name>
- <shortdescription>same as --ndb-force-send. --ndb-extra-logging[=#] Turn on
+ <shortdescription lang="en">same as --ndb-force-send. --ndb-extra-logging[=#]
Turn on
more logging in the error log. --ndb-report-thresh-binlog-epoch-slip=#
Threshold on number of epochs to be behind before reporting binlog status.
E.g. 3 means that if the difference between what epoch has been received
@@ -3774,7 +3783,7 @@
below 10%, a status message will be sent to the cluster log.
--ndb-use-exact-count Use exact records count during query planning and
for fast select count(*), disable for faster queries.
- --ndb_use_exact_count same as --ndb-use-exact-count.</shortdescription>
+ --ndb_use_exact_count same as --ndb-use-exact-count</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3801,7 +3810,7 @@
</mysqloption>
<mysqloption id="ndbcluster">
<name>ndbcluster</name>
- <shortdescription>Enable NDB Cluster (if this version of MySQL supports it).
+ <shortdescription lang="en">Enable NDB Cluster (if this version of MySQL
supports it).
Disable with --skip-ndbcluster (will save memory).
--ndb-connectstring=name Connect string for ndbcluster.
--ndb-mgmd-host=name Set host and port for ndb_mgmd. Syntax:
@@ -3822,7 +3831,7 @@
</mysqloption>
<mysqloption id="net_buffer_length">
<name>net_buffer_length</name>
- <shortdescription>Buffer length for TCP/IP and socket
communication.</shortdescription>
+ <shortdescription lang="en">Buffer length for TCP/IP and socket
communication</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3839,8 +3848,8 @@
</mysqloption>
<mysqloption id="net_read_timeout">
<name>net_read_timeout</name>
- <shortdescription>Number of seconds to wait for more data from a connection
- before aborting the read.</shortdescription>
+ <shortdescription lang="en">Number of seconds to wait for more data from a
connection
+ before aborting the read</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3857,7 +3866,7 @@
</mysqloption>
<mysqloption id="net_retry_count">
<name>net_retry_count</name>
- <shortdescription>If a read on a communication port is interrupted, retry
+ <shortdescription lang="en">If a read on a communication port is interrupted,
retry
this many times before giving up. --net_write_timeout=# Number of seconds
to wait for a block to be written to a connection before aborting the
write. --open_files_limit=# If this is not 0, then mysqld will use this
@@ -3875,7 +3884,7 @@
optimization, but may produce very bad query plans. If set to 0, the
system will automatically pick a reasonable value; if set to MAX_TABLES+2,
the optimizer will switch to the original find_best (used for
- testing/comparison).</shortdescription>
+ testing/comparison)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3893,8 +3902,8 @@
</mysqloption>
<mysqloption id="net_write_timeout">
<name>net_write_timeout</name>
- <shortdescription>Number of seconds to wait for a block to be written to a
- connection before aborting the write.</shortdescription>
+ <shortdescription lang="en">Number of seconds to wait for a block to be written
to a
+ connection before aborting the write</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3911,7 +3920,7 @@
</mysqloption>
<mysqloption id="new">
<name>new</name>
- <shortdescription>Use very new possible 'unsafe'
functions.</shortdescription>
+ <shortdescription lang="en">Use very new possible 'unsafe'
functions</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3930,7 +3939,7 @@
</mysqloption>
<mysqloption id="old-alter-table">
<name>old-alter-table</name>
- <shortdescription>Use old, non-optimized alter table.</shortdescription>
+ <shortdescription lang="en">Use old, non-optimized alter
table</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -3946,7 +3955,7 @@
</mysqloption>
<mysqloption id="old-passwords">
<name>old-passwords</name>
- <shortdescription>Use old password encryption method (needed for 4.0 and
+ <shortdescription lang="en">Use old password encryption method (needed for 4.0
and
older clients). --old-style-user-limits Enable old-style user limits
(before 5.0.3 user resources were counted per each user+host vs. per
account)</shortdescription>
@@ -3966,7 +3975,7 @@
</mysqloption>
<mysqloption id="old-style-user-limits">
<name>old-style-user-limits</name>
- <shortdescription>Enable old-style user limits (before 5.0.3 user resources
+ <shortdescription lang="en">Enable old-style user limits (before 5.0.3 user
resources
were counted per each user+host vs. per account)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -3983,10 +3992,10 @@
</mysqloption>
<mysqloption id="open_files_limit">
<name>open_files_limit</name>
- <shortdescription>If this is not 0, then mysqld will use this value to
+ <shortdescription lang="en">If this is not 0, then mysqld will use this value
to
reserve file descriptors to use with setrlimit(). If this value is 0 then
mysqld will reserve max_connections*5 or max_connections + table_cache*2
- (whichever is larger) number of files.</shortdescription>
+ (whichever is larger) number of files</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4003,10 +4012,10 @@
</mysqloption>
<mysqloption id="optimizer_prune_level">
<name>optimizer_prune_level</name>
- <shortdescription>Controls the heuristic(s) applied during query
+ <shortdescription lang="en">Controls the heuristic(s) applied during query
optimization to prune less-promising partial plans from the optimizer
search space. Meaning: 0 - do not apply any heuristic, thus perform
- exhaustive search; 1 - prune plans based on number of retrieved
rows.</shortdescription>
+ exhaustive search; 1 - prune plans based on number of retrieved
rows</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4022,13 +4031,13 @@
</mysqloption>
<mysqloption id="optimizer_search_depth">
<name>optimizer_search_depth</name>
- <shortdescription>Maximum depth of search performed by the query optimizer.
+ <shortdescription lang="en">Maximum depth of search performed by the query
optimizer.
Values larger than the number of relations in a query result in better
query plans, but take longer to compile a query. Smaller values than the
number of tables in a relation result in faster optimization, but may
produce very bad query plans. If set to 0, the system will automatically
pick a reasonable value; if set to MAX_TABLES+2, the optimizer will switch
- to the original find_best (used for testing/comparison).</shortdescription>
+ to the original find_best (used for testing/comparison)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4044,7 +4053,7 @@
</mysqloption>
<mysqloption id="pid-file">
<name>pid-file</name>
- <shortdescription>Pid file used by safe_mysqld.</shortdescription>
+ <shortdescription lang="en">Pid file used by
safe_mysqld</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4061,7 +4070,7 @@
</mysqloption>
<mysqloption id="plugin_dir">
<name>plugin_dir</name>
- <shortdescription>Directory for plugins. --preload_buffer_size=# The size of
+ <shortdescription lang="en">Directory for plugins. --preload_buffer_size=# The
size of
the buffer that is allocated when preloading indexes
--query_alloc_block_size=# Allocation block size for query parsing and
execution --query_cache_limit=# Don't cache results that are bigger than
@@ -4076,7 +4085,7 @@
execution --range_alloc_block_size=# Allocation block size for storing
ranges during optimization --read_buffer_size=# Each thread that does a
sequential scan allocates a buffer of this size for each table it scans.
- If you do many sequential scans, you may want to increase this
value.</shortdescription>
+ If you do many sequential scans, you may want to increase this
value</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4091,7 +4100,7 @@
</mysqloption>
<mysqloption id="port">
<name>port</name>
- <shortdescription>Port number to use for connection. --port-open-timeout=#
+ <shortdescription lang="en">Port number to use for connection.
--port-open-timeout=#
Maximum time in seconds to wait for the port to become free. (Default: no
wait)</shortdescription>
<section id="mysqld"/>
@@ -4112,7 +4121,7 @@
</mysqloption>
<mysqloption id="port-open-timeout">
<name>port-open-timeout</name>
- <shortdescription>Maximum time in seconds to wait for the port to become
+ <shortdescription lang="en">Maximum time in seconds to wait for the port to
become
free. (Default: no wait)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -4129,7 +4138,7 @@
</mysqloption>
<mysqloption id="preload_buffer_size">
<name>preload_buffer_size</name>
- <shortdescription>The size of the buffer that is allocated when preloading
+ <shortdescription lang="en">The size of the buffer that is allocated when
preloading
indexes</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -4147,7 +4156,7 @@
</mysqloption>
<mysqloption id="query_alloc_block_size">
<name>query_alloc_block_size</name>
- <shortdescription>Allocation block size for query parsing and
execution</shortdescription>
+ <shortdescription lang="en">Allocation block size for query parsing and
execution</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4164,7 +4173,7 @@
</mysqloption>
<mysqloption id="query_cache_limit">
<name>query_cache_limit</name>
- <shortdescription>Don't cache results that are bigger than
this.</shortdescription>
+ <shortdescription lang="en">Don't cache results that are bigger than
this</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4181,8 +4190,8 @@
</mysqloption>
<mysqloption id="query_cache_min_res_unit">
<name>query_cache_min_res_unit</name>
- <shortdescription>minimal size of unit in wich space for results is
- allocated (last unit will be trimed after writing all result
data.</shortdescription>
+ <shortdescription lang="en">minimal size of unit in wich space for results is
+ allocated (last unit will be trimed after writing all result
data</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4199,7 +4208,7 @@
</mysqloption>
<mysqloption id="query_cache_size">
<name>query_cache_size</name>
- <shortdescription>The memory allocated to store results from old
queries.</shortdescription>
+ <shortdescription lang="en">The memory allocated to store results from old
queries</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4216,9 +4225,9 @@
</mysqloption>
<mysqloption id="query_cache_type">
<name>query_cache_type</name>
- <shortdescription>0 = OFF = Don't cache or retrieve results. 1 = ON = Cache
+ <shortdescription lang="en">0 = OFF = Don't cache or retrieve results. 1 = ON =
Cache
all results except SELECT SQL_NO_CACHE ... queries. 2 = DEMAND = Cache
- only SELECT SQL_CACHE ... queries.</shortdescription>
+ only SELECT SQL_CACHE ... queries</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4235,7 +4244,7 @@
</mysqloption>
<mysqloption id="query_cache_wlock_invalidate">
<name>query_cache_wlock_invalidate</name>
- <shortdescription>Invalidate queries in query cache on LOCK for
write</shortdescription>
+ <shortdescription lang="en">Invalidate queries in query cache on LOCK for
write</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4252,7 +4261,7 @@
</mysqloption>
<mysqloption id="query_prealloc_size">
<name>query_prealloc_size</name>
- <shortdescription>Persistent buffer for query parsing and
execution</shortdescription>
+ <shortdescription lang="en">Persistent buffer for query parsing and
execution</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4269,7 +4278,7 @@
</mysqloption>
<mysqloption id="range_alloc_block_size">
<name>range_alloc_block_size</name>
- <shortdescription>Allocation block size for storing ranges during
+ <shortdescription lang="en">Allocation block size for storing ranges during
optimization</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -4287,9 +4296,9 @@
</mysqloption>
<mysqloption id="read_buffer_size">
<name>read_buffer_size</name>
- <shortdescription>Each thread that does a sequential scan allocates a buffer
+ <shortdescription lang="en">Each thread that does a sequential scan allocates a
buffer
of this size for each table it scans. If you do many sequential scans, you
- may want to increase this value.</shortdescription>
+ may want to increase this value</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4306,11 +4315,11 @@
</mysqloption>
<mysqloption id="read_only">
<name>read_only</name>
- <shortdescription>Make all non-temporary tables read-only, with the
+ <shortdescription lang="en">Make all non-temporary tables read-only, with the
exception for replication (slave) threads and users with the SUPER
privilege --read_rnd_buffer_size=# When reading rows in sorted order after
a sort, the rows are read through this buffer to avoid a disk seeks. If
- not set, then it's set to the value of record_buffer.</shortdescription>
+ not set, then it's set to the value of record_buffer</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4327,9 +4336,9 @@
</mysqloption>
<mysqloption id="read_rnd_buffer_size">
<name>read_rnd_buffer_size</name>
- <shortdescription>When reading rows in sorted order after a sort, the rows
+ <shortdescription lang="en">When reading rows in sorted order after a sort, the
rows
are read through this buffer to avoid a disk seeks. If not set, then it's
- set to the value of record_buffer.</shortdescription>
+ set to the value of record_buffer</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4346,7 +4355,7 @@
</mysqloption>
<mysqloption id="record_buffer">
<name>record_buffer</name>
- <shortdescription>Alias for read_buffer_size</shortdescription>
+ <shortdescription lang="en">Alias for read_buffer_size</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4363,7 +4372,7 @@
</mysqloption>
<mysqloption id="relay-log">
<name>relay-log</name>
- <shortdescription>The location and name to use for relay logs.
+ <shortdescription lang="en">The location and name to use for relay logs.
--relay-log-index=name The location and name to use for the file that
keeps a list of the last relay logs. --relay-log-info-file=name The
location and name of the file that remembers where the SQL replication
@@ -4409,8 +4418,8 @@
</mysqloption>
<mysqloption id="relay-log-index">
<name>relay-log-index</name>
- <shortdescription>The location and name to use for the file that keeps a
- list of the last relay logs.</shortdescription>
+ <shortdescription lang="en">The location and name to use for the file that
keeps a
+ list of the last relay logs</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4427,8 +4436,8 @@
</mysqloption>
<mysqloption id="relay-log-info-file">
<name>relay-log-info-file</name>
- <shortdescription>The location and name of the file that remembers where the
- SQL replication thread is in the relay logs.</shortdescription>
+ <shortdescription lang="en">The location and name of the file that remembers
where the
+ SQL replication thread is in the relay logs</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4445,7 +4454,7 @@
</mysqloption>
<mysqloption id="relay_log_purge">
<name>relay_log_purge</name>
- <shortdescription>0 = do not purge relay logs. 1 = purge them as soon as
+ <shortdescription lang="en">0 = do not purge relay logs. 1 = purge them as soon
as
they are no more needed. --relay_log_space_limit=# Maximum space to use
for all relay logs. --slave_compressed_protocol Use compression on
master/slave protocol. --slave_net_timeout=# Number of seconds to wait for
@@ -4455,7 +4464,7 @@
timeout, before giving up and stopping. --slow_launch_time=# If creating
the thread takes longer than this value (in seconds), the
Slow_launch_threads counter will be incremented. --sort_buffer_size=# Each
- thread that needs to do a sort allocates a buffer of this
size.</shortdescription>
+ thread that needs to do a sort allocates a buffer of this
size</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4473,7 +4482,7 @@
</mysqloption>
<mysqloption id="relay_log_space_limit">
<name>relay_log_space_limit</name>
- <shortdescription>Maximum space to use for all relay
logs.</shortdescription>
+ <shortdescription lang="en">Maximum space to use for all relay
logs</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4490,13 +4499,13 @@
</mysqloption>
<mysqloption id="replicate-do-db">
<name>replicate-do-db</name>
- <shortdescription>Tells the slave thread to restrict replication to the
+ <shortdescription lang="en">Tells the slave thread to restrict replication to
the
specified database. To specify more than one database, use the directive
multiple times, once for each database. Note that this will only work if
you do not use cross-database queries such as UPDATE some_db.some_table
SET foo='bar' while having selected a different or no database. If you
need cross database updates to work, make sure you have 3.23.28 or later,
- and use replicate-wild-do-table=db_name.%.</shortdescription>
+ and use replicate-wild-do-table=db_name.%</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4511,10 +4520,10 @@
</mysqloption>
<mysqloption id="replicate-do-table">
<name>replicate-do-table</name>
- <shortdescription>Tells the slave thread to restrict replication to the
+ <shortdescription lang="en">Tells the slave thread to restrict replication to
the
specified table. To specify more than one table, use the directive
multiple times, once for each table. This will work for cross-database
- updates, in contrast to replicate-do-db.</shortdescription>
+ updates, in contrast to replicate-do-db</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4529,7 +4538,7 @@
</mysqloption>
<mysqloption id="replicate-ignore-db">
<name>replicate-ignore-db</name>
- <shortdescription>Tells the slave thread to not replicate to the specified
+ <shortdescription lang="en">Tells the slave thread to not replicate to the
specified
database. To specify more than one database to ignore, use the directive
multiple times, once for each database. This option will not work if you
use cross database updates. If you need cross database updates to work,
@@ -4549,10 +4558,10 @@
</mysqloption>
<mysqloption id="replicate-ignore-table">
<name>replicate-ignore-table</name>
- <shortdescription>Tells the slave thread to not replicate to the specified
+ <shortdescription lang="en">Tells the slave thread to not replicate to the
specified
table. To specify more than one table to ignore, use the directive
multiple times, once for each table. This will work for cross-datbase
- updates, in contrast to replicate-ignore-db.</shortdescription>
+ updates, in contrast to replicate-ignore-db</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4567,8 +4576,8 @@
</mysqloption>
<mysqloption id="replicate-rewrite-db">
<name>replicate-rewrite-db</name>
- <shortdescription>Updates to a database with a different name than the
- original. Example:
replicate-rewrite-db=master_db_name->slave_db_name.</shortdescription>
+ <shortdescription lang="en">Updates to a database with a different name than
the
+ original. Example:
replicate-rewrite-db=master_db_name->slave_db_name</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4583,7 +4592,7 @@
</mysqloption>
<mysqloption id="replicate-same-server-id">
<name>replicate-same-server-id</name>
- <shortdescription>In replication, if set to 1, do not skip events having our
+ <shortdescription lang="en">In replication, if set to 1, do not skip events
having our
server id. Default value is 0 (to break infinite loops in circular
replication). Can't be set to 1 if</shortdescription>
<section id="mysqld"/>
@@ -4602,12 +4611,12 @@
</mysqloption>
<mysqloption id="replicate-wild-do-table">
<name>replicate-wild-do-table</name>
- <shortdescription>Tells the slave thread to restrict replication to the
+ <shortdescription lang="en">Tells the slave thread to restrict replication to
the
tables that match the specified wildcard pattern. To specify more than one
table, use the directive multiple times, once for each table. This will
work for cross-database updates. Example:
replicate-wild-do-table=foo%.bar% will replicate only updates to tables in
- all databases that start with foo and whose table names start with
bar.</shortdescription>
+ all databases that start with foo and whose table names start with
bar</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4622,12 +4631,12 @@
</mysqloption>
<mysqloption id="replicate-wild-ignore-table">
<name>replicate-wild-ignore-table</name>
- <shortdescription>Tells the slave thread to not replicate to the tables that
+ <shortdescription lang="en">Tells the slave thread to not replicate to the
tables that
match the given wildcard pattern. To specify more than one table to
ignore, use the directive multiple times, once for each table. This will
work for cross-database updates. Example:
replicate-wild-ignore-table=foo%.bar% will not do updates to tables in
- databases that start with foo and whose table names start with
bar.</shortdescription>
+ databases that start with foo and whose table names start with
bar</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4642,13 +4651,13 @@
</mysqloption>
<mysqloption id="report-host">
<name>report-host</name>
- <shortdescription>Hostname or IP of the slave to be reported to to the
+ <shortdescription lang="en">Hostname or IP of the slave to be reported to to
the
master during slave registration. Will appear in the output of SHOW SLAVE
HOSTS. Leave unset if you do not want the slave to register itself with
the master. Note that it is not sufficient for the master to simply read
the IP of the slave off the socket once the slave connects. Due to NAT and
other routing issues, that IP may not be valid for connecting to the slave
- from the master or other hosts. --report-password=name
Undocumented.</shortdescription>
+ from the master or other hosts. --report-password=name
Undocumented</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4665,7 +4674,7 @@
</mysqloption>
<mysqloption id="report-password">
<name>report-password</name>
- <shortdescription>Undocumented.</shortdescription>
+ <shortdescription lang="en">Undocumented</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4682,10 +4691,10 @@
</mysqloption>
<mysqloption id="report-port">
<name>report-port</name>
- <shortdescription>Port for connecting to slave reported to the master during
+ <shortdescription lang="en">Port for connecting to slave reported to the master
during
slave registration. Set it only if the slave is listening on a non-default
port or if you have a special tunnel from the master or other clients to
- the slave. If not sure, leave this option unset.</shortdescription>
+ the slave. If not sure, leave this option unset</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4702,7 +4711,7 @@
</mysqloption>
<mysqloption id="report-user">
<name>report-user</name>
- <shortdescription>Undocumented. --rpl-recovery-rank=#
Undocumented.</shortdescription>
+ <shortdescription lang="en">Undocumented. --rpl-recovery-rank=#
Undocumented</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4719,7 +4728,7 @@
</mysqloption>
<mysqloption id="rpl-recovery-rank">
<name>rpl-recovery-rank</name>
- <shortdescription>Undocumented.</shortdescription>
+ <shortdescription lang="en">Undocumented</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4736,7 +4745,7 @@
</mysqloption>
<mysqloption id="use-symbolic-links">
<name>use-symbolic-links</name>
- <shortdescription>Enable symbolic link support.
+ <shortdescription lang="en">Enable symbolic link support.
Deprecated option; use</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -4753,9 +4762,9 @@
</mysqloption>
<mysqloption id="safe-mode">
<name>safe-mode</name>
- <shortdescription>Skip some optimize stages (for testing).
+ <shortdescription lang="en">Skip some optimize stages (for testing).
--safe-show-database Deprecated option; use GRANT SHOW DATABASES
- instead...</shortdescription>
+ instead..</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4771,7 +4780,7 @@
</mysqloption>
<mysqloption id="safe-show-database">
<name>safe-show-database</name>
- <shortdescription>Deprecated option; use GRANT SHOW DATABASES
instead...</shortdescription>
+ <shortdescription lang="en">Deprecated option; use GRANT SHOW DATABASES
instead..</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4786,7 +4795,7 @@
</mysqloption>
<mysqloption id="safe-user-create">
<name>safe-user-create</name>
- <shortdescription>Don't allow new user creation by the user who has no write
+ <shortdescription lang="en">Don't allow new user creation by the user who has
no write
privileges to the mysql.user table. --safemalloc-mem-limit=# Simulate
memory shortage when compiled with the</shortdescription>
<section id="mysqld"/>
@@ -4806,7 +4815,7 @@
</mysqloption>
<mysqloption id="safemalloc-mem-limit">
<name>safemalloc-mem-limit</name>
- <shortdescription>Simulate memory shortage when compiled with
the</shortdescription>
+ <shortdescription lang="en">Simulate memory shortage when compiled with
the</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4821,8 +4830,8 @@
</mysqloption>
<mysqloption id="secure-auth">
<name>secure-auth</name>
- <shortdescription>Disallow authentication for accounts that have old
- (pre-4.1) passwords.</shortdescription>
+ <shortdescription lang="en">Disallow authentication for accounts that have old
+ (pre-4.1) passwords</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4839,8 +4848,8 @@
</mysqloption>
<mysqloption id="server-id">
<name>server-id</name>
- <shortdescription>Uniquely identifies the server instance in the community
- of replication partners.</shortdescription>
+ <shortdescription lang="en">Uniquely identifies the server instance in the
community
+ of replication partners</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4857,9 +4866,9 @@
</mysqloption>
<mysqloption id="set-variable">
<name>set-variable</name>
- <shortdescription>Change the value of a variable. Please note that this
+ <shortdescription lang="en">Change the value of a variable. Please note that
this
option is deprecated;you can set variables directly with
- --variable-name=value.</shortdescription>
+ --variable-name=value</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4876,7 +4885,7 @@
</mysqloption>
<mysqloption id="show-slave-auth-info">
<name>show-slave-auth-info</name>
- <shortdescription>Show user and password in SHOW SLAVE HOSTS on this
master</shortdescription>
+ <shortdescription lang="en">Show user and password in SHOW SLAVE HOSTS on this
master</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4893,7 +4902,7 @@
</mysqloption>
<mysqloption id="skip-grant-tables">
<name>skip-grant-tables</name>
- <shortdescription>Start without grant tables. This gives all users FULL
+ <shortdescription lang="en">Start without grant tables. This gives all users
FULL
ACCESS to all tables!</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -4912,7 +4921,7 @@
</mysqloption>
<mysqloption id="skip-host-cache">
<name>skip-host-cache</name>
- <shortdescription>Don't cache host names.</shortdescription>
+ <shortdescription lang="en">Don't cache host names</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4928,7 +4937,7 @@
</mysqloption>
<mysqloption id="skip-locking">
<name>skip-locking</name>
- <shortdescription>Deprecated option, use --skip-external-locking
instead.</shortdescription>
+ <shortdescription lang="en">Deprecated option, use --skip-external-locking
instead</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4944,8 +4953,8 @@
</mysqloption>
<mysqloption id="skip-name-resolve">
<name>skip-name-resolve</name>
- <shortdescription>Don't resolve hostnames. All hostnames are IP's or
- 'localhost'.</shortdescription>
+ <shortdescription lang="en">Don't resolve hostnames. All hostnames are IP's or
+ 'localhost'</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4961,7 +4970,7 @@
</mysqloption>
<mysqloption id="skip-networking">
<name>skip-networking</name>
- <shortdescription>Don't allow connection with TCP/IP.</shortdescription>
+ <shortdescription lang="en">Don't allow connection with
TCP/IP</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4977,8 +4986,8 @@
</mysqloption>
<mysqloption id="skip-new">
<name>skip-new</name>
- <shortdescription>Don't use new, possible wrong routines.
- --skip-show-database Don't allow 'SHOW DATABASE' commands.</shortdescription>
+ <shortdescription lang="en">Don't use new, possible wrong routines.
+ --skip-show-database Don't allow 'SHOW DATABASE' commands</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -4994,7 +5003,7 @@
</mysqloption>
<mysqloption id="skip-show-database">
<name>skip-show-database</name>
- <shortdescription>Don't allow 'SHOW DATABASE'
commands.</shortdescription>
+ <shortdescription lang="en">Don't allow 'SHOW DATABASE'
commands</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5009,7 +5018,7 @@
</mysqloption>
<mysqloption id="skip-slave-start">
<name>skip-slave-start</name>
- <shortdescription>If set, slave is not autostarted.</shortdescription>
+ <shortdescription lang="en">If set, slave is not
autostarted</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5027,7 +5036,7 @@
</mysqloption>
<mysqloption id="skip-stack-trace">
<name>skip-stack-trace</name>
- <shortdescription>Don't print a stack trace on
failure.</shortdescription>
+ <shortdescription lang="en">Don't print a stack trace on
failure</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5043,11 +5052,11 @@
</mysqloption>
<mysqloption id="skip-symbolic-links">
<name>skip-symbolic-links</name>
- <shortdescription>instead. --skip-thread-priority Don't give threads
+ <shortdescription lang="en">instead. --skip-thread-priority Don't give threads
different priorities. --slave-load-tmpdir=name The location where the
slave should put its temporary files when replicating a LOAD DATA INFILE
command. --slave-skip-errors=name Tells the slave thread to continue
- replication when a query returns an error from the provided
list.</shortdescription>
+ replication when a query returns an error from the provided
list</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5063,7 +5072,7 @@
</mysqloption>
<mysqloption id="skip-symlink">
<name>skip-symlink</name>
- <shortdescription>Don't allow symlinking of tables. Deprecated option.
Use</shortdescription>
+ <shortdescription lang="en">Don't allow symlinking of tables. Deprecated
option. Use</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5079,7 +5088,7 @@
</mysqloption>
<mysqloption id="skip-thread-priority">
<name>skip-thread-priority</name>
- <shortdescription>Don't give threads different
priorities.</shortdescription>
+ <shortdescription lang="en">Don't give threads different
priorities</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5094,8 +5103,8 @@
</mysqloption>
<mysqloption id="slave-load-tmpdir">
<name>slave-load-tmpdir</name>
- <shortdescription>The location where the slave should put its temporary
- files when replicating a LOAD DATA INFILE command.</shortdescription>
+ <shortdescription lang="en">The location where the slave should put its
temporary
+ files when replicating a LOAD DATA INFILE command</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5112,8 +5121,8 @@
</mysqloption>
<mysqloption id="slave-skip-errors">
<name>slave-skip-errors</name>
- <shortdescription>Tells the slave thread to continue replication when a
- query returns an error from the provided list.</shortdescription>
+ <shortdescription lang="en">Tells the slave thread to continue replication when
a
+ query returns an error from the provided list</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5128,7 +5137,7 @@
</mysqloption>
<mysqloption id="slave_compressed_protocol">
<name>slave_compressed_protocol</name>
- <shortdescription>Use compression on master/slave
protocol.</shortdescription>
+ <shortdescription lang="en">Use compression on master/slave
protocol</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5145,8 +5154,8 @@
</mysqloption>
<mysqloption id="slave_net_timeout">
<name>slave_net_timeout</name>
- <shortdescription>Number of seconds to wait for more data from a
- master/slave connection before aborting the read.</shortdescription>
+ <shortdescription lang="en">Number of seconds to wait for more data from a
+ master/slave connection before aborting the read</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5163,9 +5172,9 @@
</mysqloption>
<mysqloption id="slave_transaction_retries">
<name>slave_transaction_retries</name>
- <shortdescription>Number of times the slave SQL thread will retry a
+ <shortdescription lang="en">Number of times the slave SQL thread will retry a
transaction in case it failed with a deadlock or elapsed lock wait
- timeout, before giving up and stopping.</shortdescription>
+ timeout, before giving up and stopping</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5182,7 +5191,7 @@
</mysqloption>
<mysqloption id="slow-query-log">
<name>slow-query-log</name>
- <shortdescription>Enable|disable slow query log</shortdescription>
+ <shortdescription lang="en">Enable|disable slow query
log</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5197,8 +5206,8 @@
</mysqloption>
<mysqloption id="slow_launch_time">
<name>slow_launch_time</name>
- <shortdescription>If creating the thread takes longer than this value (in
- seconds), the Slow_launch_threads counter will be
incremented.</shortdescription>
+ <shortdescription lang="en">If creating the thread takes longer than this value
(in
+ seconds), the Slow_launch_threads counter will be
incremented</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5215,11 +5224,11 @@
</mysqloption>
<mysqloption id="socket">
<name>socket</name>
- <shortdescription>Socket file to use for connection.
+ <shortdescription lang="en">Socket file to use for connection.
--sporadic-binlog-dump-fail Option used by mysql-test for debugging and
testing of replication. --sql-bin-update-same=# The update log is
deprecated since version 5.0, is replaced by the binary log and this
- option does nothing anymore.</shortdescription>
+ option does nothing anymore</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5236,8 +5245,8 @@
</mysqloption>
<mysqloption id="sort_buffer_size">
<name>sort_buffer_size</name>
- <shortdescription>Each thread that needs to do a sort allocates a buffer of
- this size.</shortdescription>
+ <shortdescription lang="en">Each thread that needs to do a sort allocates a
buffer of
+ this size</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5254,8 +5263,8 @@
</mysqloption>
<mysqloption id="sporadic-binlog-dump-fail">
<name>sporadic-binlog-dump-fail</name>
- <shortdescription>Option used by mysql-test for debugging and testing of
- replication.</shortdescription>
+ <shortdescription lang="en">Option used by mysql-test for debugging and testing
of
+ replication</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5272,8 +5281,8 @@
</mysqloption>
<mysqloption id="sql-bin-update-same">
<name>sql-bin-update-same</name>
- <shortdescription>The update log is deprecated since version 5.0, is
- replaced by the binary log and this option does nothing
anymore.</shortdescription>
+ <shortdescription lang="en">The update log is deprecated since version 5.0, is
+ replaced by the binary log and this option does nothing
anymore</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5290,9 +5299,9 @@
</mysqloption>
<mysqloption id="sql-mode">
<name>sql-mode</name>
- <shortdescription>Syntax: sql-mode=option[,option[,option...]] where option
+ <shortdescription lang="en">Syntax: sql-mode=option[,option[,option...]] where
option
can be one of: REAL_AS_FLOAT, PIPES_AS_CONCAT, ANSI_QUOTES, IGNORE_SPACE,
- ONLY_FULL_GROUP_BY, NO_UNSIGNED_SUBTRACTION.</shortdescription>
+ ONLY_FULL_GROUP_BY, NO_UNSIGNED_SUBTRACTION</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5309,8 +5318,8 @@
</mysqloption>
<mysqloption id="ssl">
<name>ssl</name>
- <shortdescription>Enable SSL for connection (automatically enabled with
- other flags). Disable with --skip-ssl.</shortdescription>
+ <shortdescription lang="en">Enable SSL for connection (automatically enabled
with
+ other flags). Disable with --skip-ssl</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5326,7 +5335,7 @@
</mysqloption>
<mysqloption id="ssl-ca">
<name>ssl-ca</name>
- <shortdescription>CA file in PEM format (check OpenSSL docs, implies
--ssl).</shortdescription>
+ <shortdescription lang="en">CA file in PEM format (check OpenSSL docs, implies
--ssl)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5342,7 +5351,7 @@
</mysqloption>
<mysqloption id="ssl-capath">
<name>ssl-capath</name>
- <shortdescription>CA directory (check OpenSSL docs, implies
--ssl).</shortdescription>
+ <shortdescription lang="en">CA directory (check OpenSSL docs, implies
--ssl)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5358,7 +5367,7 @@
</mysqloption>
<mysqloption id="ssl-cert">
<name>ssl-cert</name>
- <shortdescription>X509 cert in PEM format (implies
--ssl).</shortdescription>
+ <shortdescription lang="en">X509 cert in PEM format (implies
--ssl)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5374,7 +5383,7 @@
</mysqloption>
<mysqloption id="ssl-cipher">
<name>ssl-cipher</name>
- <shortdescription>SSL cipher to use (implies --ssl).</shortdescription>
+ <shortdescription lang="en">SSL cipher to use (implies
--ssl)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5390,7 +5399,7 @@
</mysqloption>
<mysqloption id="ssl-key">
<name>ssl-key</name>
- <shortdescription>X509 key in PEM format (implies
--ssl).</shortdescription>
+ <shortdescription lang="en">X509 key in PEM format (implies
--ssl)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5406,7 +5415,7 @@
</mysqloption>
<mysqloption id="symbolic-links">
<name>symbolic-links</name>
- <shortdescription>instead.</shortdescription>
+ <shortdescription lang="en">instead</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5425,7 +5434,7 @@
</mysqloption>
<mysqloption id="sync-bdb-logs">
<name>sync-bdb-logs</name>
- <shortdescription>Synchronously flush Berkeley DB logs. Enabled by
default</shortdescription>
+ <shortdescription lang="en">Synchronously flush Berkeley DB logs. Enabled by
default</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5441,8 +5450,8 @@
</mysqloption>
<mysqloption id="sync-binlog">
<name>sync-binlog</name>
- <shortdescription>Synchronously flush binary log to disk after every #th
- event. Use 0 (default) to disable synchronous flushing.</shortdescription>
+ <shortdescription lang="en">Synchronously flush binary log to disk after every
#th
+ event. Use 0 (default) to disable synchronous flushing</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5459,7 +5468,7 @@
</mysqloption>
<mysqloption id="sync-frm">
<name>sync-frm</name>
- <shortdescription>Sync .frm to disk on create. Enabled by
default.</shortdescription>
+ <shortdescription lang="en">Sync .frm to disk on create. Enabled by
default</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5476,11 +5485,11 @@
</mysqloption>
<mysqloption id="sysdate-is-now">
<name>sysdate-is-now</name>
- <shortdescription>Non-default option to alias SYSDATE() to NOW() to make it
+ <shortdescription lang="en">Non-default option to alias SYSDATE() to NOW() to
make it
safe-replicable. Since 5.0, SYSDATE() returns a `dynamic' value different
for different invocations, even within the same statement.
--tc-heuristic-recover=name Decision to use in heuristic recover process.
- Possible values are COMMIT or ROLLBACK.</shortdescription>
+ Possible values are COMMIT or ROLLBACK</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5496,7 +5505,7 @@
</mysqloption>
<mysqloption id="table_cache">
<name>table_cache</name>
- <shortdescription>Deprecated; use --table_open_cache instead.
+ <shortdescription lang="en">Deprecated; use --table_open_cache instead.
--table_definition_cache=# The number of cached table definitions.
--table_open_cache=# The number of cached open tables.
--table_lock_wait_timeout=# Timeout in seconds to wait for a table level
@@ -5504,7 +5513,7 @@
cursors. --thread_cache_size=# How many threads we should keep in a cache
for reuse. --thread_concurrency=# Permits the application to give the
threads system a hint for the desired number of threads that should be run
- at the same time.</shortdescription>
+ at the same time</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5533,8 +5542,8 @@
</mysqloption>
<mysqloption id="table_lock_wait_timeout">
<name>table_lock_wait_timeout</name>
- <shortdescription>Timeout in seconds to wait for a table level lock before
- returning an error. Used only if the connection has active
cursors.</shortdescription>
+ <shortdescription lang="en">Timeout in seconds to wait for a table level lock
before
+ returning an error. Used only if the connection has active
cursors</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5562,8 +5571,8 @@
</mysqloption>
<mysqloption id="tc-heuristic-recover">
<name>tc-heuristic-recover</name>
- <shortdescription>Decision to use in heuristic recover process. Possible
- values are COMMIT or ROLLBACK.</shortdescription>
+ <shortdescription lang="en">Decision to use in heuristic recover process.
Possible
+ values are COMMIT or ROLLBACK</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5579,8 +5588,8 @@
</mysqloption>
<mysqloption id="temp-pool">
<name>temp-pool</name>
- <shortdescription>Using this option will cause most temporary files created
- to use a small set of names, rather than a unique name for each new
file.</shortdescription>
+ <shortdescription lang="en">Using this option will cause most temporary files
created
+ to use a small set of names, rather than a unique name for each new
file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5597,7 +5606,7 @@
</mysqloption>
<mysqloption id="thread_cache_size">
<name>thread_cache_size</name>
- <shortdescription>How many threads we should keep in a cache for
reuse.</shortdescription>
+ <shortdescription lang="en">How many threads we should keep in a cache for
reuse</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5614,8 +5623,8 @@
</mysqloption>
<mysqloption id="thread_concurrency">
<name>thread_concurrency</name>
- <shortdescription>Permits the application to give the threads system a hint
- for the desired number of threads that should be run at the same
time.</shortdescription>
+ <shortdescription lang="en">Permits the application to give the threads system
a hint
+ for the desired number of threads that should be run at the same
time</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5632,7 +5641,7 @@
</mysqloption>
<mysqloption id="thread_stack">
<name>thread_stack</name>
- <shortdescription>The stack size for each thread.</shortdescription>
+ <shortdescription lang="en">The stack size for each
thread</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5649,7 +5658,7 @@
</mysqloption>
<mysqloption id="time_format">
<name>time_format</name>
- <shortdescription>The TIME format (for future).</shortdescription>
+ <shortdescription lang="en">The TIME format (for
future)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5666,7 +5675,7 @@
</mysqloption>
<mysqloption id="timed_mutexes">
<name>timed_mutexes</name>
- <shortdescription>Specify whether to time mutexes (only InnoDB mutexes are
+ <shortdescription lang="en">Specify whether to time mutexes (only InnoDB
mutexes are
currently supported)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -5683,7 +5692,7 @@
</mysqloption>
<mysqloption id="tmp_table_size">
<name>tmp_table_size</name>
- <shortdescription>If an in-memory temporary table exceeds this size, MySQL
+ <shortdescription lang="en">If an in-memory temporary table exceeds this size,
MySQL
will automatically convert it to an on-disk MyISAM table.
--transaction_alloc_block_size=# Allocation block size for transactions to
be stored in binary log --transaction_prealloc_size=# Persistent buffer
@@ -5692,7 +5701,7 @@
presence of a key of the underlying table is used in queries with a LIMIT
clause for updating. 0 = NO = Prohibit update of a VIEW, which does not
contain a key of the underlying table and the query uses a LIMIT clause
- (usually get from GUI tools).</shortdescription>
+ (usually get from GUI tools)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5710,9 +5719,9 @@
</mysqloption>
<mysqloption id="tmpdir">
<name>tmpdir</name>
- <shortdescription>Path for temporary files. Several paths may be specified,
+ <shortdescription lang="en">Path for temporary files. Several paths may be
specified,
separated by a colon (:), in this case they are used in a round-robin
- fashion. --transaction-isolation=name Default transaction isolation
level.</shortdescription>
+ fashion. --transaction-isolation=name Default transaction isolation
level</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5731,7 +5740,7 @@
</mysqloption>
<mysqloption id="transaction-isolation">
<name>transaction-isolation</name>
- <shortdescription>Default transaction isolation level.</shortdescription>
+ <shortdescription lang="en">Default transaction isolation
level</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5746,7 +5755,7 @@
</mysqloption>
<mysqloption id="transaction_alloc_block_size">
<name>transaction_alloc_block_size</name>
- <shortdescription>Allocation block size for transactions to be stored in
+ <shortdescription lang="en">Allocation block size for transactions to be stored
in
binary log</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -5764,7 +5773,7 @@
</mysqloption>
<mysqloption id="transaction_prealloc_size">
<name>transaction_prealloc_size</name>
- <shortdescription>Persistent buffer for transactions to be stored in binary
+ <shortdescription lang="en">Persistent buffer for transactions to be stored in
binary
log</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
@@ -5782,11 +5791,11 @@
</mysqloption>
<mysqloption id="updatable_views_with_limit">
<name>updatable_views_with_limit</name>
- <shortdescription>1 = YES = Don't issue an error message (warning only) if a
+ <shortdescription lang="en">1 = YES = Don't issue an error message (warning
only) if a
VIEW without presence of a key of the underlying table is used in queries
with a LIMIT clause for updating. 0 = NO = Prohibit update of a VIEW,
which does not contain a key of the underlying table and the query uses a
- LIMIT clause (usually get from GUI tools).</shortdescription>
+ LIMIT clause (usually get from GUI tools)</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5802,7 +5811,7 @@
</mysqloption>
<mysqloption id="use-symbolic-links">
<name>use-symbolic-links</name>
- <shortdescription>Enable symbolic link support. Deprecated option;
use</shortdescription>
+ <shortdescription lang="en">Enable symbolic link support. Deprecated option;
use</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5822,7 +5831,7 @@
</mysqloption>
<mysqloption id="user">
<name>user</name>
- <shortdescription>Run mysqld daemon as user.</shortdescription>
+ <shortdescription lang="en">Run mysqld daemon as user</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5840,7 +5849,7 @@
</mysqloption>
<mysqloption id="verbose">
<name>verbose</name>
- <shortdescription>Used with --help option for detailed
help</shortdescription>
+ <shortdescription lang="en">Used with --help option for detailed
help</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5859,7 +5868,7 @@
</mysqloption>
<mysqloption id="version">
<name>version</name>
- <shortdescription>Output version information and exit.</shortdescription>
+ <shortdescription lang="en">Output version information and
exit</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5877,8 +5886,8 @@
</mysqloption>
<mysqloption id="wait_timeout">
<name>wait_timeout</name>
- <shortdescription>The number of seconds the server waits for activity on a
- connection before closing it.</shortdescription>
+ <shortdescription lang="en">The number of seconds the server waits for activity
on a
+ connection before closing it</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5894,7 +5903,7 @@
</mysqloption>
<mysqloption id="warnings">
<name>warnings</name>
- <shortdescription>Deprecated; use --log-warnings
instead.</shortdescription>
+ <shortdescription lang="en">Deprecated; use --log-warnings
instead</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5912,7 +5921,7 @@
</mysqloption>
<mysqloption id="print-defaults">
<name>print-defaults</name>
- <shortdescription>Print defaults.</shortdescription>
+ <shortdescription lang="en">Print defaults</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<types>
@@ -5926,7 +5935,7 @@
</mysqloption>
<mysqloption id="no-defaults">
<name>no-defaults</name>
- <shortdescription>Don't read defaults.</shortdescription>
+ <shortdescription lang="en">Don't read defaults</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<types>
@@ -5941,7 +5950,7 @@
<mysqloption id="defaults-file">
<name>defaults-file</name>
- <shortdescription>Loads defaults from specific file.</shortdescription>
+ <shortdescription lang="en">Loads defaults from specific
file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<types>
@@ -5955,7 +5964,7 @@
</mysqloption>
<mysqloption id="defaults-extra-file">
<name>defailts-extra-file</name>
- <shortdescription>Load additional options from file.</shortdescription>
+ <shortdescription lang="en">Load additional options from
file</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<types>
@@ -5969,7 +5978,7 @@
</mysqloption>
<mysqloption id="with-debug">
<name>with-debug</name>
- <shortdescription>option.</shortdescription>
+ <shortdescription lang="en">option</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5985,8 +5994,8 @@
</mysqloption>
<mysqloption id="Aborted_clients">
<name>Aborted_clients</name>
- <shortdescription>The number of connections aborted because the client died
- without closing the connection properly.</shortdescription>
+ <shortdescription lang="en">The number of connections aborted because the
client died
+ without closing the connection properly</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -5998,8 +6007,8 @@
</mysqloption>
<mysqloption id="Aborted_connects">
<name>Aborted_connects</name>
- <shortdescription>The number of failed attempts to connecto the MySQL
- server.</shortdescription>
+ <shortdescription lang="en">The number of failed attempts to connecto the MySQL
+ server</shortdescription>
<section id="mysqld"/>
<opclass class="server"/>
<engines includes="all"/>
@@ -6011,8 +6020,8 @@
</mysqloption>
<mysqloption id="Binlog_cache_disk_use">
<name>Binlog_cache_disk_use</name>
- <shortdescription>The number of transactions that used a temporary file
- instead of the temporary binary log cache.</shortdescription>
+ <shortdescription lang="en">The number of transactions that used a temporary
file
+ instead of the temporary binary log cache</shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
<engines includes="all"/>
@@ -6024,8 +6033,8 @@
</mysqloption>
<mysqloption id="Binlog_cache_use">
<name>Binlog_cache_use</name>
- <shortdescription>The number of transactions that used the temporary binary
- log cache.</shortdescription>
+ <shortdescription lang="en">The number of transactions that used the temporary
binary
+ log cache</shortdescription>
<section id="mysqld"/>
<opclass class="binlog"/>
<engines includes="all"/>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r3300 - trunk/mysqld-optvars | mcbrown | 8 Sep |