Merge in update such that trunk tree no longer commits manpages.
[awesomized/libmemcached] / docs / man / memcached_result_cas.3
diff --git a/docs/man/memcached_result_cas.3 b/docs/man/memcached_result_cas.3
deleted file mode 100644 (file)
index c7bf1b8..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-.TH "MEMCACHED_RESULT_CAS" "3" "June 10, 2011" "0.47" "libmemcached"
-.SH NAME
-memcached_result_cas \- Working with result sets
-.
-.nr rst2man-indent-level 0
-.
-.de1 rstReportMargin
-\\$1 \\n[an-margin]
-level \\n[rst2man-indent-level]
-level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
--
-\\n[rst2man-indent0]
-\\n[rst2man-indent1]
-\\n[rst2man-indent2]
-..
-.de1 INDENT
-.\" .rstReportMargin pre:
-. RS \\$1
-. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
-. nr rst2man-indent-level +1
-.\" .rstReportMargin post:
-..
-.de UNINDENT
-. RE
-.\" indent \\n[an-margin]
-.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
-.nr rst2man-indent-level -1
-.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
-.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
-..
-.\" Man page generated from reStructeredText.
-.
-.sp
-Work with memcached_result_st
-.SH SYNOPSIS
-.sp
-#include <libmemcached/memcached_pool.h>
-.INDENT 0.0
-.TP
-.B memcached_result_st * memcached_result_create (memcached_st *ptr, memcached_result_st *result);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B void memcached_result_free (memcached_result_st *result);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B const char * memcached_result_key_value (memcached_result_st *result);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B size_t memcached_result_key_length (const memcached_result_st *result);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B const char *memcached_result_value (memcached_result_st *ptr);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B size_t memcached_result_length (const memcached_result_st *ptr);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B uint32_t memcached_result_flags(const memcached_result_st\fI\ *result\fP)
-.UNINDENT
-.INDENT 0.0
-.TP
-.B uint64_t memcached_result_cas (const memcached_result_st *result);
-.UNINDENT
-.INDENT 0.0
-.TP
-.B memcached_return_t memcached_result_set_value(memcached_result_st\fI\ *ptr\fP, const char\fI\ *value\fP, size_t\fI\ length\fP)
-.UNINDENT
-.INDENT 0.0
-.TP
-.B void memcached_result_set_flags(memcached_result_st\fI\ *ptr\fP, uint32_t\fI\ flags\fP)
-.UNINDENT
-.INDENT 0.0
-.TP
-.B void memcached_result_set_expiration(memcached_result_st\fI\ *ptr\fP, time_t)
-.UNINDENT
-.sp
-Compile and link with \-lmemcachedutil \-lmemcached
-.SH DESCRIPTION
-.sp
-libmemcached(3) can optionally return a memcached_result_st which acts as a
-result object. The result objects have added benefits over the character
-pointer returns, in that they are forward compatible with new return items
-that future memcached servers may implement (the best current example of
-this is the CAS return item). The structures can also be reused, which will
-save on calls to malloc(3). It is suggested that you use result objects over
-char * return functions.
-.sp
-The structure of memcached_result_st has been encapsulated, you should not
-write code to directly access members of the structure.
-.sp
-memcached_result_create() will either allocate memory for a
-memcached_result_st or will initialize a structure passed to it.
-.sp
-memcached_result_free() will deallocate any memory attached to the
-structure. If the structure was also allocated, it will deallocate it.
-.sp
-memcached_result_key_value() returns the key value associated with the
-current result object.
-.sp
-memcached_result_key_length() returns the key length associated with the
-current result object.
-.sp
-memcached_result_value() returns the result value associated with the
-current result object.
-.sp
-memcached_result_length() returns the result length associated with the
-current result object.
-.sp
-memcached_result_flags() returns the flags associated with the
-current result object.
-.sp
-memcached_result_cas() returns the cas associated with the
-current result object. This value will only be available if the server
-tests it.
-.sp
-memcached_result_set_value() takes a byte array and a size and sets
-the result to this value. This function is used for trigger responses.
-.sp
-void memcached_result_set_flags() takes a result structure and stores
-a new value for the flags field.
-.sp
-void memcached_result_set_expiration(A) takes a result structure and stores
-a new value for the expiration field (this is only used by read through
-triggers).
-.sp
-You may wish to avoid using memcached_result_create(3) with a
-stack based allocation. The most common issues related to ABI safety involve
-heap allocated structures.
-.SH RETURN
-.sp
-Varies, see particular functions. All structures must have
-memcached_result_free() called on them for cleanup purposes. Failure to
-do this will result in leaked memory.
-.SH HOME
-.sp
-To find out more information please check:
-\fI\%http://libmemcached.org/\fP
-.SH SEE ALSO
-.sp
-\fImemcached(1)\fP \fIlibmemcached(3)\fP \fImemcached_strerror(3)\fP
-.SH AUTHOR
-Brian Aker
-.SH COPYRIGHT
-2011, Brian Aker DataDifferential, http://datadifferential.com/
-.\" Generated by docutils manpage writer.
-.\" 
-.