基本的な使用法
例1 key-value ペアの格納と取得
<?php$tt = new TokyoTyrant("localhost");$tt->put("key", "value");echo $tt->get("key");?>
上の例の出力は以下となります。
value