Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > e450e7f3d6075c4a54de19e68d38177f > files > 81

groonga-doc-3.0.5-1.fc18.x86_64.rpm

.. -*- rst -*-

.. highlightlang:: none

.. groonga-command
.. database: commands_register

register
========

Summary
-------

``register`` command registers a plugin. You need to register a plugin
before you use a plugin.

You need just one ``register`` command for a plugin in the same
database because registered plugin information is written into the
database.  When you restart your ``groonga`` process, ``groonga``
process loads all registered plugins without ``register`` command.

.. note::

   Registered plugins can't be removed for now.

Syntax
------

``register`` has a parameter ``path``. It is required parameter::

  register path

Usage
-----

Here is a sample that registers ``QueryExpanderTSV`` query expander
that is included in
``${PREFIX}/lib/groonga/plugins/query_expanders/tsv.so``.

.. groonga-command
.. include:: ../../example/reference/commands/register/query_expanders_tsv.log
.. register query_expanders/tsv

You can omit ``${PREFIX}/lib/groonga/plugins/`` and suffix (``.so``).
They are completed automatically.

You can specify absolute path such as ``register
/usr/lib/groonga/plugins/query_expanders/tsv.so``.

Return value
------------

``register`` returns ``true`` as body on success such as::

  [HEADER, true]

If ``register`` fails, error details are in ``HEADER``.

See :doc:`/reference/command/output_format` for ``HEADER``.