~drizzle-trunk/drizzle/development

2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
1
Multi-Thread Scheduler
2
======================
3
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
4
The :program:`multi_thread` plugin provides the low-level thread scheduler.
2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
5
6
.. _multi_thread_loading:
7
8
Loading
9
-------
10
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
11
This plugin is loaded by default and it should not be unloaded because Drizzle will not start without this plugin.
2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
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
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
36
The plugin does not register any variables.
2397.1.1 by Daniel Nichter
Skeleton documentation for all plugins, more complete docu for first half of plugins.
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
2397.1.3 by Daniel Nichter
Complete documenting 2nd half of plugins.
58
Changelog
59
---------
60
61
v0.1
62
^^^^
63
* First release.