Sha256: e9ff95d0409938999cfe1bb1b58494b784d0485744a9ba7ed308d8e7b3e0de4b

Contents?: true

Size: 1.75 KB

Versions: 4

Compression:

Stored size: 1.75 KB

Contents

.. -*- rst -*-

.. highlightlang:: none

.. groonga-command
.. database: commands_cache_limit

``cache_limit``
===============

Summary
-------

``cache_limit`` gets or sets the max number of query cache
entries. Query cache is used only by :doc:`select` command.

If the max number of query cache entries is 100, the recent 100
``select`` commands are only cached. The cache expire algorithm is LRU
(least recently used).

Syntax
------

``cache_limit`` has one optional parameter::

  cache_limit [max=null]

Usage
-----

You can get the current max number of cache entries by executing
``cache_limit`` without parameter.

.. groonga-command
.. include:: ../../example/reference/commands/cache_limit/get.log
.. cache_limit

You can set the max number of cache entries by executing ``cache_limit``
with ``max`` parameter.

Here is an example that sets ``10`` as the max number of cache
entries.

.. groonga-command
.. include:: ../../example/reference/commands/cache_limit/set.log
.. cache_limit 10
.. cache_limit

If ``max`` parameter is used, the return value is the max number of
cache entries before ``max`` parameter is set.


Parameters
----------

This section describes all parameters.

``max``
"""""""

It specifies the max number of query cache entries as a number.

If ``max`` parameter isn't specified, the current max number of query
cache entries isn't changed. ``cache_limit`` just returns the current
max number of query cache entries.

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

``cache_limit`` returns the current max number of query cache entries::

  [[HEADER, n_entries]]

``HEADER``

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

``n_entries``

  ``n_entries`` is the current max number of query cache entries. It
  is a number.

See also
--------

* :doc:`select`

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
rroonga-3.0.8-x86-mingw32 vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt
rroonga-3.0.8-x86-mingw32 vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt
rroonga-3.0.8-x64-mingw32 vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt
rroonga-3.0.8-x64-mingw32 vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt