Updating the mget function in the C++ interface to take a std::vector of
[awesomized/libmemcached] / docs / memcached_get.pod
old mode 100755 (executable)
new mode 100644 (file)
index df0ac77..330c075
@@ -1,6 +1,6 @@
 =head1 NAME
 
-memcached_get, memcached_mget, memcached_fetch
+memcached_get, memcached_mget, memcached_fetch - Get a value
 
 =head1 LIBRARY
 
@@ -40,7 +40,7 @@ C Client Library for memcached (libmemcached, -lmemcached)
                         unsigned int number_of_keys);
 
   char *memcached_fetch (memcached_st *ptr,
-                         const char *key, size_t *key_length, 
+                         char *key, size_t *key_length, 
                          size_t *value_length,
                          uint32_t *flags, 
                          memcached_return *error);
@@ -104,6 +104,12 @@ as memcached_get() and memcached_mget(). The difference is that they take
 a master key that is used for determining which server an object was stored
 if key partitioning was used for storage.
 
+All of the above functions are not supported when the C<MEMCACHED_BEHAVIOR_USE_UDP>
+has been set. Executing any of these functions with this behavior on will result in 
+C<MEMCACHED_NOT_SUPPORTED> being returned or, for those functions which do not return
+a C<memcached_return>, the error function parameter will be set to 
+C<MEMCACHED_NOT_SUPPORTED>.
+
 =head1 RETURN
 
 All objects returned must be freed by the calling application.