We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
$cache = new MemcachedArrayObject(array("127.0.0.1:11211")); $cache["Key"] = "Value"; echo $cache["Key"];
$cache = new MemcachedArrayObject(array("127.0.0.1:11211"));
$cache["Key"] = "Value";
echo $cache["Key"];
`$cache = new MemcachedArrayObject(array("127.0.0.1:11211"), 60); // Second.
$cache = new MemcachedArrayObject(array("1.1.1.1:11211")); // Wrong Server! try{ $cache["Key"] = "test..."; } catch(Exception $e) { echo $e->getMessage(); }
$cache = new MemcachedArrayObject(array("1.1.1.1:11211")); // Wrong Server!
try{
$cache["Key"] = "test...";
}
catch(Exception $e) {
echo $e->getMessage();
There was an error while loading. Please reload this page.