You are here

function testKeyValue in Memcache API and Integration 5.2

1 call to testKeyValue()
memcachetests.php in ./memcachetests.php

File

./memcachetests.php, line 352

Code

function testKeyValue($mc, $key, $value) {
  $mc
    ->set($key, $value, FALSE, 5);
  printKeyValue($key, $mc
    ->get($key));
}