~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

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