We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
this sample code uses basic apis of php-libmemcached.
<?php $memcached = new Memcached(); $ret = $memcached->addserver('localhost', 11211); $ret = $memcached->set('key1', 'val1'); var_dump($ret); $ret = $memcached->get('key1'); var_dump($ret);
There was an error while loading. Please reload this page.