If you want to get rid of a document, you can use the
delete operation:
OperationFuture<Boolean> delete = client.delete("key");
Again, delete is an asynchronous operation
and therefore returns a OperationFuture on
which you can block through the get() method.
If you try to delete a document that is not there, the result of
the OperationFuture will be
false.