Utilisation de Memcached

Support Wissensdatenbank

Du bist hier:
Print

Utiliser Memcached

Memcached est installé sur tous les serveurs Linux depuis le 29 juillet 2019.

Pour utiliser Memcached, assurez-vous d’utiliser la dernière version de PHP.

Le service Memcached n’est accessible que sur le serveur local et utilise le port standard 11211.

Vous trouverez ici un exemple de script d’utilisation de Memcached:

<?php
$mem = new memcached();
$mem->addServer("127.0.0.1", 11211);
$result = $mem->get("Test");
if ($result) {
echo $result;
} else {
echo "Test key not found, adding key";
$mem->set("Test", "I found a match, memcache is working") or die("Nothing Saved...");
}
?>
War dieser Artikel hilfreich?
0 out Of 5 Stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
Wie können wir diesen Artikel verbessern?
Please submit the reason for your vote so that we can improve the article.
Brauchst du Hilfe?
Related Post