~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _memory_plugin:
 
2
 
 
3
Memory Storage Engine
 
4
=====================
 
5
 
 
6
The :program:`memory` plugin provides the Memory storage engine for in-memory,
 
7
hash-based tables.
 
8
 
 
9
.. _memory_loading:
 
10
 
 
11
Loading
 
12
-------
 
13
 
 
14
This plugin is loaded by default.  To stop the plugin from loading by default, start :program:`drizzled` with::
 
15
 
 
16
   --plugin-remove=memory
 
17
 
 
18
.. seealso:: :ref:`drizzled_plugin_options` for more information about adding and removing plugins.
 
19
 
 
20
Authors
 
21
-------
 
22
 
 
23
MySQL AB
 
24
 
 
25
.. _memory_version:
 
26
 
 
27
Version
 
28
-------
 
29
 
 
30
This documentation applies to **memory 1.0**.
 
31
 
 
32
To see which version of the plugin a Drizzle server is running, execute:
 
33
 
 
34
.. code-block:: mysql
 
35
 
 
36
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='memory'
 
37