~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/docs/index.rst

Merge Monty - Updates to pandora-build to support features of gcc 4.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Multi-Thread Scheduler
2
 
======================
3
 
 
4
 
The :program:`multi_thread` plugin provides the low-level thread scheduler.
5
 
 
6
 
.. _multi_thread_loading:
7
 
 
8
 
Loading
9
 
-------
10
 
 
11
 
This plugin is loaded by default and it should not be unloaded because Drizzle will not start without this plugin.
12
 
 
13
 
.. _multi_thread_configuration:
14
 
 
15
 
Configuration
16
 
-------------
17
 
 
18
 
These command line options configure the plugin when :program:`drizzled`
19
 
is started.  See :doc:`/configuration` for more information about specifying
20
 
command line options.
21
 
 
22
 
.. program:: drizzled
23
 
 
24
 
.. option:: --multi-thread.max-threads ARG
25
 
 
26
 
   :Default: 2048
27
 
   :Variable:
28
 
 
29
 
   Maximum number of user threads available.
30
 
 
31
 
.. _multi_thread_variables:
32
 
 
33
 
Variables
34
 
---------
35
 
 
36
 
The plugin does not register any variables.
37
 
 
38
 
.. _multi_thread_authors:
39
 
 
40
 
Authors
41
 
-------
42
 
 
43
 
Brian Aker
44
 
 
45
 
.. _multi_thread_version:
46
 
 
47
 
Version
48
 
-------
49
 
 
50
 
This documentation applies to **multi_thread 0.1**.
51
 
 
52
 
To see which version of the plugin a Drizzle server is running, execute:
53
 
 
54
 
.. code-block:: mysql
55
 
 
56
 
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='multi_thread'
57
 
 
58
 
Changelog
59
 
---------
60
 
 
61
 
v0.1
62
 
^^^^
63
 
* First release.