~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/configuration.rst

  • Committer: Olaf van der Spek
  • Date: 2011-04-20 09:27:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2285.
  • Revision ID: olafvdspek@gmail.com-20110420092749-hw1q9rfj1pumc2no
Session Cache

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
--------
8
8
 
9
9
Drizzle can draw its configuration from a number of sources, including the
10
 
command line, configuration files and environment variables.
 
10
command line, from configuration files, and from environment variables.
11
11
 
12
 
Support is planned for pluggable configuration souces.
 
12
Support is planned for pluggable configuration sources.
13
13
 
14
14
----------------
15
15
Loading Sequence
38
38
*DRIZZLED_INNODB_BUFFER_POOL_SIZE*
39
39
 
40
40
The config files contain a set of lines of the form `option-name=value`, one
41
 
per line. Due to a bug in Boost.Program_options Boolean values require an argument, e.g. `console.enable=true`.
 
41
per line. Due to a bug in Boost.Program_options Boolean values require an argument,
 
42
e.g. `console.enable=true`.
42
43
 
43
44
Config files support section headers such as `[innodb]` with all options
44
45
occuring subsequently being prefixed by the section header. For instance, if
45
 
one were do give::
 
46
one were do give:
 
47
 
 
48
.. code-block:: ini
46
49
 
47
50
  [innodb]
48
51
  buffer_pool_size=10M
49
52
  log_file_size=5M
50
53
 
51
 
It would be the same as::
 
54
It would be the same as:
 
55
 
 
56
.. code-block:: ini
52
57
 
53
58
  innodb.buffer_pool_size=10M
54
59
  innodb.log_file_size