``` use v6; use Cache::Memcached; my $memd = Cache::Memcached.new; $memd.set("foobar", 42); $memd.flush-all; say $memd.get("foobar"); ``` prints 42