Update docs.
[m6w6/libmemcached] / docs / man / memcached_behavior.3
1 .TH "MEMCACHED_BEHAVIOR" "3" "January 26, 2012" "1.0.4" "libmemcached"
2 .SH NAME
3 memcached_behavior \- libmemcached Documentation
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 .sp
34 Manipulate the behavior of a memcached_st structure.
35 .SH SYNOPSIS
36 .sp
37 #include <libmemcached/memcached.h>
38 .INDENT 0.0
39 .TP
40 .B uint64_t memcached_behavior_get (memcached_st *ptr, memcached_behavior flag);
41 .UNINDENT
42 .INDENT 0.0
43 .TP
44 .B memcached_return_t memcached_behavior_set (memcached_st *ptr, memcached_behavior flag, uint64_t data);
45 .UNINDENT
46 .sp
47 Compile and link with \-lmemcached
48 .SH DESCRIPTION
49 .sp
50 \fIlibmemcached(3)\fP behavior can be modified by using \fBmemcached_behavior_set()\fP. Default behavior is the library strives to be quick and
51 accurate. Some behavior, while being faster, can also result in not entirely
52 accurate behavior (for instance, \fBmemcached_set()\fP will always respond
53 with \fBMEMCACHED_SUCCESS\fP).
54 .sp
55 \fBmemcached_behavior_get()\fP takes a behavior flag and returns whether or not that behavior is currently enabled in the client.
56 .sp
57 \fBmemcached_behavior_set()\fP changes the value of a particular option
58 of the client. It takes both a flag (listed below) and a value. For simple
59 on or off options you just need to pass in a value of 1. Calls to
60 \fBmemcached_behavior_set()\fP will flush and reset all connections.
61 .INDENT 0.0
62 .TP
63 .B MEMCACHED_BEHAVIOR_USE_UDP
64 .UNINDENT
65 .sp
66 Causes \fIlibmemcached(3)\fP to use the UDP transport when communicating
67 with a memcached server. Not all I/O operations are testsed
68 when this behavior is enababled. The following operations will return
69 \fBMEMCACHED_NOT_SUPPORTED\fP when executed with the \fI\%MEMCACHED_BEHAVIOR_USE_UDP\fP enabled: \fBmemcached_version()\fP, \fBmemcached_stat()\fP, \fBmemcached_get()\fP, \fBmemcached_get_by_key()\fP, \fBmemcached_mget()\fP, \fBmemcached_mget_by_key()\fP, \fBmemcached_fetch()\fP, \fBmemcached_fetch_result()\fP, \fBmemcached_value_fetch()\fP.
70 .sp
71 All other operations are testsed but are executed in a \(aqfire\-and\-forget\(aq
72 mode, in which once the client has executed the operation, no attempt
73 will be made to ensure the operation has been received and acted on by the
74 server.
75 .sp
76 \fIlibmemcached(3)\fP does not allow TCP and UDP servers to be shared
77 within the same libmemached(3) client \(aqinstance\(aq. An attempt to add a TCP
78 server when this behavior is enabled will result in a \fBMEMCACHED_INVALID_HOST_PROTOCOL\fP, as will attempting to add a UDP server when this behavior has
79 not been enabled.
80 .INDENT 0.0
81 .TP
82 .B MEMCACHED_BEHAVIOR_NO_BLOCK
83 .UNINDENT
84 .sp
85 Causes \fIlibmemcached(3)\fP to use asychronous IO. This is the fastest
86 transport available for storage functions.
87 .INDENT 0.0
88 .TP
89 .B MEMCACHED_BEHAVIOR_SND_TIMEOUT
90 .UNINDENT
91 .sp
92 This sets the microsecond behavior of the socket against the SO_SNDTIMEO flag. In cases where you cannot use non\-blocking IO this will allow you to still have timeouts on the sending of data.
93 .INDENT 0.0
94 .TP
95 .B MEMCACHED_BEHAVIOR_RCV_TIMEOUT
96 .UNINDENT
97 .sp
98 This sets the microsecond behavior of the socket against the SO_RCVTIMEO flag.
99 .sp
100 In cases where you cannot use non\-blocking IO this will allow you to still have timeouts on the reading of data.
101 .INDENT 0.0
102 .TP
103 .B MEMCACHED_BEHAVIOR_TCP_NODELAY
104 .UNINDENT
105 .sp
106 Turns on the no\-delay feature for connecting sockets (may be faster in some
107 environments).
108 .INDENT 0.0
109 .TP
110 .B MEMCACHED_BEHAVIOR_HASH
111 .UNINDENT
112 .sp
113 Makes the default hashing algorithm for keys use MD5. The value can be set to either \fBMEMCACHED_HASH_DEFAULT\fP, \fBMEMCACHED_HASH_MD5\fP, \fBMEMCACHED_HASH_CRC\fP, \fBMEMCACHED_HASH_FNV1_64\fP, \fBMEMCACHED_HASH_FNV1A_64\fP, \fBMEMCACHED_HASH_FNV1_32\fP, \fBMEMCACHED_HASH_FNV1A_32\fP, \fBMEMCACHED_HASH_JENKINS\fP, \fBMEMCACHED_HASH_HSIEH\fP, and \fBMEMCACHED_HASH_MURMUR\fP.
114 .sp
115 Each hash has it\(aqs advantages and it\(aqs weaknesses. If you don\(aqt know or don\(aqt
116 care, just go with the default.
117 .sp
118 Support for \fBMEMCACHED_HASH_HSIEH\fP is a compile time option that is disabled by default. To enable tests for this hashing algorithm, configure and build libmemcached with the \-\-enable\-hash_hsieh.
119 .INDENT 0.0
120 .TP
121 .B MEMCACHED_BEHAVIOR_DISTRIBUTION
122 .UNINDENT
123 .sp
124 Using this you can enable different means of distributing values to servers.
125 .sp
126 The default method is MEMCACHED_DISTRIBUTION_MODULA. You can enable consistent hashing by setting MEMCACHED_DISTRIBUTION_CONSISTENT. Consistent hashing delivers better distribution and allows servers to be added to the cluster with minimal cache losses. Currently MEMCACHED_DISTRIBUTION_CONSISTENT is an alias for the value MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA.
127 .INDENT 0.0
128 .TP
129 .B MEMCACHED_BEHAVIOR_CACHE_LOOKUPS
130 .UNINDENT
131 .sp
132 Deprecated since version 0.46(?): DNS lookups are now always cached until an error occurs with the server.
133 .sp
134 Memcached can cache named lookups so that DNS lookups are made only once.
135
136 .INDENT 0.0
137 .TP
138 .B MEMCACHED_BEHAVIOR_SUPPORT_CAS
139 .UNINDENT
140 .sp
141 Support CAS operations (this is not enabled by default at this point in the server since it imposes a slight performance penalty).
142 .INDENT 0.0
143 .TP
144 .B MEMCACHED_BEHAVIOR_KETAMA
145 .UNINDENT
146 .sp
147 Sets the default distribution to MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA and the hash to MEMCACHED_HASH_MD5.
148 .INDENT 0.0
149 .TP
150 .B MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
151 Sets the default distribution to MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA with the weighted tests. and the hash to MEMCACHED_HASH_MD5.
152 .UNINDENT
153 .INDENT 0.0
154 .TP
155 .B MEMCACHED_BEHAVIOR_KETAMA_HASH
156 .UNINDENT
157 .sp
158 Sets the hashing algorithm for host mapping on continuum. The value can be set to either MEMCACHED_HASH_DEFAULT, MEMCACHED_HASH_MD5, MEMCACHED_HASH_CRC, MEMCACHED_HASH_FNV1_64, MEMCACHED_HASH_FNV1A_64, MEMCACHED_HASH_FNV1_32, and MEMCACHED_HASH_FNV1A_32.
159 .INDENT 0.0
160 .TP
161 .B MEMCACHED_BEHAVIOR_KETAMA_COMPAT
162 .UNINDENT
163 .sp
164 Sets the compatibility mode. The value can be set to either MEMCACHED_KETAMA_COMPAT_LIBMEMCACHED (this is the default) or MEMCACHED_KETAMA_COMPAT_SPY to be compatible with the SPY Memcached client for Java.
165 .INDENT 0.0
166 .TP
167 .B MEMCACHED_BEHAVIOR_POLL_TIMEOUT
168 .UNINDENT
169 .sp
170 Modify the timeout value that is used by poll(). The default value is \-1. An signed int pointer must be passed to memcached_behavior_set() to change this value. For memcached_behavior_get() a signed int value will be cast and returned as the unsigned long long.
171 .INDENT 0.0
172 .TP
173 .B MEMCACHED_BEHAVIOR_USER_DATA
174 .UNINDENT
175 .sp
176 Deprecated since version <: 0.30
177 .INDENT 0.0
178 .TP
179 .B MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
180 .UNINDENT
181 .sp
182 Enabling buffered IO causes commands to "buffer" instead of being sent. Any action that gets data causes this buffer to be be sent to the remote connection. Quiting the connection or closing down the connection will also cause the buffered data to be pushed to the remote connection.
183 .INDENT 0.0
184 .TP
185 .B MEMCACHED_BEHAVIOR_VERIFY_KEY
186 .UNINDENT
187 .sp
188 Enabling this will cause \fIlibmemcached(3)\fP to test all keys to verify that they are valid keys.
189 .INDENT 0.0
190 .TP
191 .B MEMCACHED_BEHAVIOR_SORT_HOSTS
192 .UNINDENT
193 .sp
194 Enabling this will cause hosts that are added to be placed in the host list in sorted order. This will defeat consisten hashing.
195 .INDENT 0.0
196 .TP
197 .B MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT
198 .UNINDENT
199 .sp
200 In non\-blocking mode this changes the value of the timeout during socket connection.
201 .INDENT 0.0
202 .TP
203 .B MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
204 .UNINDENT
205 .sp
206 Enable the use of the binary protocol. Please note that you cannot toggle this flag on an open connection.
207 .INDENT 0.0
208 .TP
209 .B MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
210 .UNINDENT
211 .sp
212 Set this value to enable the server be removed after continuous MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT times connection failure.
213 .INDENT 0.0
214 .TP
215 .B MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
216 .UNINDENT
217 .sp
218 Set this value to tune the number of messages that may be sent before libmemcached should start to automatically drain the input queue. Setting this value to high, may cause libmemcached to deadlock (trying to send data, but the send will block because the input buffer in the kernel is full).
219 .INDENT 0.0
220 .TP
221 .B MEMCACHED_BEHAVIOR_IO_BYTES_WATERMARK
222 .UNINDENT
223 .sp
224 Set this value to tune the number of bytes that may be sent before libmemcached should start to automatically drain the input queue (need at least 10 IO requests sent without reading the input buffer). Setting this value to high, may cause libmemcached to deadlock (trying to send data, but the send will block because the input buffer in the kernel is full).
225 .INDENT 0.0
226 .TP
227 .B MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH
228 .UNINDENT
229 .sp
230 The binary protocol works a bit different than the textual protocol in that a multiget is implemented as a pipe of single get\-operations which are sent to the server in a chunk. If you are using large multigets from your application, you may improve the latency of the gets by setting this value so you send out the first chunk of requests when you hit the specified limit. It allows the servers to start processing the requests to send the data back while the rest of the requests are created and sent to the server.
231 .INDENT 0.0
232 .TP
233 .B MEMCACHED_BEHAVIOR_NOREPLY
234 .UNINDENT
235 .sp
236 Set this value to specify that you really don\(aqt care about the result from your storage commands (set, add, replace, append, prepend).
237 .INDENT 0.0
238 .TP
239 .B MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
240 .UNINDENT
241 .sp
242 If you just want "a poor mans HA", you may specify the numbers of replicas libmemcached should store of each item (on different servers). This replication does not dedicate certain memcached servers to store the replicas in, but instead it will store the replicas together with all of the other objects (on the \(aqn\(aq next servers specified in your server list).
243 .INDENT 0.0
244 .TP
245 .B MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ
246 .UNINDENT
247 .sp
248 Allows randomizing the replica reads starting point. Normally the read is done from primary server and in case of miss the read is done from primary + 1, then primary + 2 all the way to \(aqn\(aq replicas. If this option is set on the starting point of the replica reads is randomized between the servers. This allows distributing read load to multiple servers with the expense of more write traffic.
249 .INDENT 0.0
250 .TP
251 .B MEMCACHED_BEHAVIOR_CORK
252 .UNINDENT
253 .sp
254 This open has been deprecated with the behavior now built and used appropriately on selected platforms.
255 .INDENT 0.0
256 .TP
257 .B MEMCACHED_BEHAVIOR_KEEPALIVE
258 .UNINDENT
259 .sp
260 Enable TCP_KEEPALIVE behavior.
261 .INDENT 0.0
262 .TP
263 .B MEMCACHED_BEHAVIOR_KEEPALIVE_IDLE
264 .UNINDENT
265 .sp
266 Specify time, in seconds, to mark a connection as idle. This is only available as an option Linux.
267 .INDENT 0.0
268 .TP
269 .B MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
270 .UNINDENT
271 .sp
272 Find the current size of SO_SNDBUF. A value of 0 means either an error occured or no hosts were available. It is safe to assume system default if this occurs. If an error occurs you can checked the last cached errno statement to find the specific error.
273 .INDENT 0.0
274 .TP
275 .B MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
276 .UNINDENT
277 .sp
278 Find the current size of SO_RCVBUF. A value of 0 means either an error occured or no hosts were available. It is safe to assume system default if this occurs. If an error occurs you can checked the last cached errno statement to find the specific error.
279 .INDENT 0.0
280 .TP
281 .B MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
282 .UNINDENT
283 .sp
284 Deprecated since version 0.48: See \fI\%MEMCACHED_BEHAVIOR_REMOVE_FAILED_SERVERS\fP
285 .sp
286 This number of times a host can have an error before it is disabled.
287
288 .INDENT 0.0
289 .TP
290 .B MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
291 .UNINDENT
292 .sp
293 Deprecated since version 0.48: See \fI\%MEMCACHED_BEHAVIOR_REMOVE_FAILED_SERVERS\fP
294 .sp
295 If enabled any hosts which have been flagged as disabled will be removed from the list of servers in the memcached_st structure. This must be used in combination with MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT.
296
297 .INDENT 0.0
298 .TP
299 .B MEMCACHED_BEHAVIOR_REMOVE_FAILED_SERVERS
300 If enabled any hosts which have been flagged as disabled will be removed from the list of servers in the memcached_st structure.
301 .UNINDENT
302 .INDENT 0.0
303 .TP
304 .B MEMCACHED_BEHAVIOR_RETRY_TIMEOUT
305 .UNINDENT
306 .sp
307 When enabled a host which is problematic will only be checked for usage based on the amount of time set by this behavior. The value is in seconds.
308 .INDENT 0.0
309 .TP
310 .B MEMCACHED_BEHAVIOR_HASH_WITH_PREFIX_KEY
311 .UNINDENT
312 .sp
313 When enabled the prefix key will be added to the key when determining server
314 by hash. See \fBMEMCACHED_CALLBACK_NAMESPACE\fP for additional
315 information.
316 .SH RETURN
317 .sp
318 memcached_behavior_get() returns either the current value of the get, or 0
319 or 1 on simple flag behaviors (1 being enabled). memcached_behavior_set()
320 returns failure or success.
321 .SH NOTES
322 .sp
323 memcached_behavior_set() in version .17 was changed from taking a pointer
324 to data value, to taking a uin64_t.
325 .SH HOME
326 .sp
327 To find out more information please check:
328 \fI\%http://libmemcached.org/\fP
329 .SH SEE ALSO
330 .sp
331 \fImemcached(1)\fP \fIlibmemcached(3)\fP \fImemcached_strerror(3)\fP
332 .SH AUTHOR
333 Brian Aker
334 .SH COPYRIGHT
335 2011, Brian Aker DataDifferential, http://datadifferential.com/
336 .\" Generated by docutils manpage writer.
337 .\"
338 .