pandora-build v0.76 - synced with drizzle
[awesomized/libmemcached] / docs / memcached_delete.pod
index 41a55df976d6e08101ba444633027ef1946d015e..4a4c76e562572a75555ffa35e6bb41df8598a505 100644 (file)
@@ -1,6 +1,6 @@
 =head1 NAME
 
-memcached_delete
+memcached_delete - Delete a key
 
 =head1 LIBRARY
 
@@ -24,8 +24,12 @@ C Client Library for memcached (libmemcached, -lmemcached)
 =head1 DESCRIPTION
 
 memcached_delete() is used to delete a particular key. An expiration value
-can be applied so that the key is deleted after that many seconds.
-memcached_delete_by_key() works the same, but it takes a master key to 
+can be applied so that the key is deleted after that many seconds, but this
+will only work if you are using a 1.2.x server. If you are using a 1.2.x
+server and you want to use the expiration value, please call memcached_version
+one time for the memcached_st instance. If you don't do this no-reply and
+buffered mode will be disabled to avoid getting out of sync with the server.
+memcached_delete_by_key() works the same, but it takes a master key to
 find the given value.
 
 =head1 RETURN