Final bits for 1.0.9
[m6w6/libmemcached] / docs / man / memcached_fetch.3
index 278281dcd5eb647f3f3db0d5860f2a93846480c4..51701a2acd1d6df578b0ac225e3bc25dd6a449cf 100644 (file)
@@ -1,4 +1,4 @@
-.TH "MEMCACHED_FETCH" "3" "October 18, 2011" "1.01" "libmemcached"
+.TH "MEMCACHED_FETCH" "3" "July 05, 2012" "1.0.9" "libmemcached"
 .SH NAME
 memcached_fetch \- Retrieving data from the server
 .
@@ -36,7 +36,6 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
 .INDENT 0.0
 .TP
 .B char *memcached_fetch(memcached_st\fI\ *ptr\fP, char\fI\ *key\fP, size_t\fI\ *key_length\fP, size_t\fI\ *value_length\fP, uint32_t\fI\ *flags\fP, memcached_return_t\fI\ *error\fP)
-.sp
 Deprecated since version 0.50: Use \fBmemcached_fetch_result()\fP instead.
 .UNINDENT
 .sp
@@ -48,7 +47,7 @@ You must pass in a key and its length to fetch the object. You must supply
 three pointer variables which will give you the state of the returned
 object.  A \fBuint32_t\fP pointer to contain whatever flags you stored with the value, a \fBsize_t\fP pointer which will be filled with size of of the
 object, and a \fBmemcached_return_t\fP pointer to hold any error. The
-object will be returned upon success and NULL will be returned on failure. \fBMEMCACHD_END\fP is returned by the *error value when all objects that have been found are returned. The final value upon \fBMEMCACHED_END\fP is null.
+object will be returned upon success and NULL will be returned on failure. \fBMEMCACHED_END\fP is returned by the *error value when all objects that have been found are returned. The final value upon \fBMEMCACHED_END\fP is null.
 .sp
 Values returned by \fI\%memcached_fetch()\fP must be freed by the caller.
 .sp
@@ -61,7 +60,7 @@ functions with this behavior on will result in \fBMEMCACHED_NOT_SUPPORTED\fP bei
 to \fBMEMCACHED_END\fP upon successful conclusion.
 \fBMEMCACHED_NOTFOUND\fP will be return if no keys at all were found.
 .sp
-\fBMEMCACHED_KEY_TOO_BIG\fP is set to error whenever :c:\fBmemcached_fetch()\fP was used
+\fBMEMCACHED_KEY_TOO_BIG\fP is set to error whenever \fI\%memcached_fetch()\fP was used
 and the key was set larger then \fBMEMCACHED_MAX_KEY\fP, which was the largest
 key allowed for the original memcached ascii server.
 .SH HOME