Added libmemcachedutil containing utility functions
[m6w6/libmemcached] / docs / memcached_get.pod
index df0ac7799ee985f3e85e37edbc89e2c3c9cfde9d..e96a92597f178cad86c8ab4899740a920aef8c6a 100755 (executable)
@@ -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.