Final bits for 1.0.9
[m6w6/libmemcached] / docs / man / memcached_add_by_key.3
1 .TH "MEMCACHED_ADD_BY_KEY" "3" "July 05, 2012" "1.0.9" "libmemcached"
2 .SH NAME
3 memcached_add_by_key \- Storing and Replacing Data
4 .
5 .nr rst2man-indent-level 0
6 .
7 .de1 rstReportMargin
8 \\$1 \\n[an-margin]
9 level \\n[rst2man-indent-level]
10 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
11 -
12 \\n[rst2man-indent0]
13 \\n[rst2man-indent1]
14 \\n[rst2man-indent2]
15 ..
16 .de1 INDENT
17 .\" .rstReportMargin pre:
18 . RS \\$1
19 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
20 . nr rst2man-indent-level +1
21 .\" .rstReportMargin post:
22 ..
23 .de UNINDENT
24 . RE
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
30 ..
31 .\" Man page generated from reStructeredText.
32 .
33 .SH SYNOPSIS
34 .sp
35 #include <libmemcached/memcached.h>
36 .INDENT 0.0
37 .TP
38 .B memcached_return_t memcached_set(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, const char\fI\ *value\fP, size_t\fI\ value_length\fP, time_t\fI\ expiration\fP, uint32_t\fI\ flags\fP)
39 .UNINDENT
40 .INDENT 0.0
41 .TP
42 .B memcached_return_t memcached_add(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, const char\fI\ *value\fP, size_t\fI\ value_length\fP, time_t\fI\ expiration\fP, uint32_t\fI\ flags\fP)
43 .UNINDENT
44 .INDENT 0.0
45 .TP
46 .B memcached_return_t memcached_replace(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, const char\fI\ *value\fP, size_t\fI\ value_length\fP, time_t\fI\ expiration\fP, uint32_t\fI\ flags\fP)
47 .UNINDENT
48 .INDENT 0.0
49 .TP
50 .B memcached_return_t memcached_set_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, const char\fI\ *value\fP, size_t\fI\ value_length\fP, time_t\fI\ expiration\fP, uint32_t\fI\ flags\fP)
51 .UNINDENT
52 .INDENT 0.0
53 .TP
54 .B memcached_return_t memcached_add_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, const char\fI\ *value\fP, size_t\fI\ value_length\fP, time_t\fI\ expiration\fP, uint32_t\fI\ flags\fP)
55 .UNINDENT
56 .INDENT 0.0
57 .TP
58 .B memcached_return_t memcached_replace_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, const char\fI\ *value\fP, size_t\fI\ value_length\fP, time_t\fI\ expiration\fP, uint32_t\fI\ flags\fP)
59 .UNINDENT
60 .sp
61 Compile and link with \-lmemcached
62 .SH DESCRIPTION
63 .sp
64 \fI\%memcached_set()\fP, \fI\%memcached_add()\fP, and \fI\%memcached_replace()\fP are all used to store information on the server. All methods take a key, and its length to store the object. Keys are currently limited to 250 characters when using either a version of memcached(1) which is 1.4 or below, or when using the text protocol. You must supply both a value and a length. Optionally you
65 store the object. Keys are currently limited to 250 characters by the
66 memcached(1) server. You must supply both a value and a length. Optionally you
67 may test an expiration time for the object and a 16 byte value (it is meant to be used as a bitmap). "flags" is a 4byte space that is stored alongside of the main value. Many sub libraries make use of this field, so in most cases users should avoid making use of it.
68 .sp
69 \fI\%memcached_set()\fP will write an object to the server. If an object
70 already exists it will overwrite what is in the server. If the object does not
71 exist it will be written. If you are using the non\-blocking mode this function
72 will always return true unless a network error occurs.
73 .sp
74 \fI\%memcached_replace()\fP replaces an object on the server. If the object is not found on the server an error occurs.
75 .sp
76 \fI\%memcached_add()\fP adds an object to the server. If the object is found on the server an error occurs, otherwise the value is stored.
77 .sp
78 \fBmemcached_cas()\fP overwrites data in the server as long as the "cas"
79 value is still the same in the server. You can get the cas value of a result by
80 calling \fBmemcached_result_cas()\fP on a memcached_result_st(3) structure. At the point
81 that this note was written cas is still buggy in memached. Turning on tests
82 for it in libmemcached(3) is optional. Please see memcached_set for
83 information on how to do this.
84 .sp
85 \fI\%memcached_set_by_key()\fP, \fI\%memcached_add_by_key()\fP, and \fI\%memcached_replace_by_key()\fP methods all behave in a similar method as the non
86 key methods. The difference is that they use their group_key parameter to map
87 objects to particular servers.
88 .sp
89 If you are looking for performance, \fI\%memcached_set()\fP with non\-blocking IO is the fastest way to store data on the server.
90 .sp
91 All of the above functions are testsed with the \fBMEMCACHED_BEHAVIOR_USE_UDP\fP behavior enabled. However, when using these operations with this behavior
92 on, there are limits to the size of the payload being sent to the server.
93 The reason for these limits is that the Memcached Server does not allow
94 multi\-datagram requests and the current server implementation sets a datagram
95 size to 1400 bytes. Due to protocol overhead, the actual limit of the user supplied data is less than 1400 bytes and depends on the protocol in use as, well as the operation being
96 executed. When running with the binary protocol, \fBMEMCACHED_BEHAVIOR_BINARY_PROTOCOL\fP, the size of the key,value, flags and expiry combined may not
97 exceed 1368 bytes. When running with the ASCII protocol, the exact limit fluctuates depending on which function is being executed and whether the function is a cas operation or not. For non\-cas ASCII set operations, there are at least
98 1335 bytes available to split among the key, key_prefix, and value; for cas
99 ASCII operations there are at least 1318 bytes available to split among the key, key_prefix and value. If the total size of the command, including overhead,
100 exceeds 1400 bytes, a \fBMEMCACHED_WRITE_FAILURE\fP will be returned.
101 .SH RETURN
102 .sp
103 All methods return a value of type \fBmemcached_return_t\fP.
104 On success the value will be \fBMEMCACHED_SUCCESS\fP.
105 Use \fBmemcached_strerror()\fP to translate this value to a printable string.
106 .sp
107 For \fI\%memcached_replace()\fP and \fI\%memcached_add()\fP, \fBMEMCACHED_NOTSTORED\fP is a legitmate error in the case of a collision.
108 .SH HOME
109 .sp
110 To find out more information please check:
111 \fI\%http://libmemcached.org/\fP
112 .SH SEE ALSO
113 .sp
114 \fImemcached(1)\fP \fIlibmemached(3)\fP \fImemcached_strerror(3)\fP \fImemcached_prepend(3)\fP \fImemcached_cas(3)\fP \fImemcached_append(3)\fP
115 .SH AUTHOR
116 Brian Aker
117 .SH COPYRIGHT
118 2011, Brian Aker DataDifferential, http://datadifferential.com/
119 .\" Generated by docutils manpage writer.
120 .\"
121 .