Utilizzo in Memcached

Support Wissensdatenbank

Du bist hier:
Print

Utilizzare Memcached

Memcached è stato installato su tutti i server Linux dal 29 luglio 2019.

Per utilizzare Memcached assicurarsi di utilizzare l’ultima versione di PHP.

Il servizio Memcached Service è raggiungibile solo dal server locale e utilizza la porta standard 11211.

Qui potete trovare un esempio di script per l’utilizzo di 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