???<!-- GIF89;a -->
123123123123
.....................................................................................................................................???<!-- GIF89;a -->
123123123123
.....................................................................................................................................--TEST--
memcache->delete()
--SKIPIF--
<?php include 'connect.inc'; ?>
--FILE--
<?php

include 'connect.inc';

$memcache->set('test', 'test');

$memcache->delete('test', 10);

/* the item should be still there */
$memcache->delete('test');

echo "Done\n";

?>
--EXPECT--
Done
