WARNING: Version 1.3 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
memcached
editmemcached
editThe memcached module allows to expose elasticsearch APIs over the memcached protocol (as closely as possible).
It is provided as a plugin called transport-memcached
and installing
is explained
here
. Another option is to download the memcached plugin and placing it
under the plugins
directory.
The memcached protocol supports both the binary and the text protocol, automatically detecting the correct one to use.
Mapping REST to Memcached Protocol
editMemcached commands are mapped to REST and handled by the same generic REST layer in elasticsearch. Here is a list of the memcached commands supported:
GET
editThe memcached GET
command maps to a REST GET
. The key used is the
URI (with parameters). The main downside is the fact that the memcached
GET
does not allow body in the request (and SET
does not allow to
return a result…). For this reason, most REST APIs (like search) allow
to accept the "source" as a URI parameter as well.
SET
editThe memcached SET
command maps to a REST POST
. The key used is the
URI (with parameters), and the body maps to the REST body.
DELETE
editThe memcached DELETE
command maps to a REST DELETE
. The key used is
the URI (with parameters).
QUIT
editThe memcached QUIT
command is supported and disconnects the client.
Settings
editThe following are the settings the can be configured for memcached:
Setting | Description |
---|---|
|
A bind port range. Defaults to |
It also uses the common network settings.
Disable memcached
editThe memcached module can be completely disabled and not started using by
setting memcached.enabled
to false
. By default it is enabled once it
is detected as a plugin.