1 .TH "MEMCACHED_CAS" "3" "October 18, 2011" "1.01" "libmemcached"
3 memcached_cas \- Working with data on the server in an atomic fashion
5 .nr rst2man-indent-level 0
9 level \\n[rst2man-indent-level]
10 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
17 .\" .rstReportMargin pre:
19 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
20 . nr rst2man-indent-level +1
21 .\" .rstReportMargin post:
25 .\" indent \\n[an-margin]
26 .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
27 .nr rst2man-indent-level -1
28 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
29 .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
31 .\" Man page generated from reStructeredText.
35 #include <libmemcached/memcached.h>
38 .B memcached_return_t memcached_cas(memcached_st *ptr, const char *key, size_t key_length, const char *value, size_t value_length, time_t expiration, uint32_t flags, uint64_t cas);
42 .B memcached_return_t memcached_cas_by_key(memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, const char *value, size_t value_length, time_t expiration, uint32_t flags, uint64_t cas);
45 Compile and link with \-lmemcached
48 \fBmemcached_cas()\fP overwrites data in the server as long as the "cas"
49 value is still the same in the server. You can get the cas value of a result
50 by calling \fBmemcached_result_cas()\fP on a memcached_result_st(3)
51 structure. At the point that this note was written cas is still buggy in memached. Turning on tests for it in libmemcached(3) is optional. Please see
52 \fBmemcached_set()\fP for information on how to do this.
54 \fBmemcached_cas_by_key()\fP method behaves in a similar method as the non
55 key methods. The difference is that it uses the \fBgroup_key\fP parameter
56 to map objects to particular servers.
58 \fBmemcached_cas()\fP is testsed with the \fBMEMCACHED_BEHAVIOR_USE_UDP\fP behavior enabled. However, when using these operations with this behavior
59 on, there are limits to the size of the payload being sent to the server. The
60 reason for these limits is that the Memcached Server does not allow
61 multi\-datagram requests and the current server implementation sets a datagram
62 size to 1400 bytes. Due to protocol overhead, the actual limit of the user
63 supplied data is less than 1400 bytes and depends on the protocol in use as,
64 well as the operation being executed. When running with the binary protocol,
65 \fBMEMCACHED_BEHAVIOR_BINARY_PROTOCOL\fP, the size of the key,value,
66 flags and expiry combined may not exceed 1368 bytes. When running with the
67 ASCII protocol, the exact limit fluctuates depending on which function is
68 being executed and whether the function is a cas operation or not. For
69 non\-cas ASCII set operations, there are at least 1335 bytes available to
70 split among the key, key_prefix, and value; for cas ASCII operations there
71 are at least 1318 bytes available to split among the key, key_prefix and value. If the total size of the command, including overhead, exceeds 1400 bytes, a \fBMEMCACHED_WRITE_FAILURE\fP will be returned.
74 All methods return a value of type \fBmemcached_return_t\fP.
75 On success the value will be \fBMEMCACHED_SUCCESS\fP.
76 Use \fBmemcached_strerror()\fP to translate this value to a printable
80 To find out more information please check:
81 \fI\%http://libmemcached.org/\fP
84 \fImemcached(1)\fP \fIlibmemached(3)\fP \fImemcached_strerror(3)\fP \fImemcached_set(3)\fP \fImemcached_append(3)\fP \fImemcached_add(3)\fP \fImemcached_prepend(3)\fP \fImemcached_replace(3)\fP
88 2011, Brian Aker DataDifferential, http://datadifferential.com/
89 .\" Generated by docutils manpage writer.