We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
== Basic Example == {{{ $cache = new MemcachedArrayObject(array("127.0.0.1:11211")); $cache["Key"] = "Value"; echo $cache["Key"]; }}}
== Specifying the expiration time == {{{ $cache = new MemcachedArrayObject(array("127.0.0.1:11211"), 60); // Second. }}}
== Error Handling == {{{ $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.