Rechercher dans le manuel MySQL
15.19 InnoDB memcached Plugin
[+/-]
- 15.19.1 Benefits of the InnoDB memcached Plugin
- 15.19.2 InnoDB memcached Architecture
- 15.19.3 Setting Up the InnoDB memcached Plugin
- 15.19.4 InnoDB memcached Multiple get and Range Query Support
- 15.19.5 Security Considerations for the InnoDB memcached Plugin
- 15.19.6 Writing Applications for the InnoDB memcached Plugin
- 15.19.7 The InnoDB memcached Plugin and Replication
- 15.19.8 InnoDB memcached Plugin Internals
- 15.19.9 Troubleshooting the InnoDB memcached Plugin
The InnoDB
memcached plugin
(daemon_memcached
) provides an integrated
memcached daemon that automatically stores and
retrieves data from InnoDB
tables, turning the
MySQL server into a fast “key-value store”. Instead of
formulating queries in SQL, you can use simple
get
, set
, and
incr
operations that avoid the performance
overhead associated with SQL parsing and constructing a query
optimization plan. You can also access the same
InnoDB
tables through SQL for convenience,
complex queries, bulk operations, and other strengths of traditional
database software.
This “NoSQL-style” interface uses the
memcached API to speed up database operations,
letting InnoDB
handle memory caching using its
buffer pool mechanism. Data
modified through memcached operations such as
add
, set
, and
incr
are stored to disk, in
InnoDB
tables. The combination of
memcached simplicity and
InnoDB
reliability and consistency provides users
with the best of both worlds, as explained in
Section 15.19.1, “Benefits of the InnoDB memcached Plugin”. For an architectural
overview, see Section 15.19.2, “InnoDB memcached Architecture”.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-innodb-memcached.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.