use strict;
use lib 't/lib';
my $cache = libmemcached_test_create({ min_version => '1.2.4' });
plan tests => 1;
$cache->set("foo", "abc");
$cache->prepend("foo", "0123");
is($cache->get("foo"), "0123abc");