Beispiele
Basic usage
Beispiel #1 Putting and getting a key-value pair
<?php
$tt = new TokyoTyrant("localhost");
$tt->put("key", "value");
echo $tt->get("key");
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
value
There are no user contributed notes for this page.
