$memcache = new Memcache; $memcache->connect("localhost",11211); echo "Server"s version: " . $memcache->getVersion() . "
"; $tmp_object = new stdClass; $tmp_object->str_attr = "test"; $tmp_object->int_attr = 123; $memcache->set("key",$tmp_object,false,10); echo "Store data in the cache (data will expire in 10 seconds)
"; echo "Data from the cache:
"; var_dump($memcache->get("key"));
你可以看到如下结果
---------- PhpUnit ---------- Server"s version: 1.4.4-14-g9c660c0 Store data in the cache (data will expire in 10 seconds) Data from the cache: object(stdClass)#3 (2) { ["str_attr"]=> string(4) "test" ["int_attr"]=> int(123) } Output completed (2 sec consumed) - Normal Termination