1 .TH "MEMCACHED_CALLBACK_SET" "3" "April 14, 2011" "0.47" "libmemcached"
3 memcached_callback_set \- libmemcached Documentation
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.
34 Get and set a callback
37 C Client Library for memcached (libmemcached, \-lmemcached)
40 #include <libmemcached/memcached.h>
43 .B memcached_return_t memcached_callback_set (memcached_st *ptr, memcached_callback_t flag, void *data);
47 .B void * memcached_callback_get (memcached_st *ptr, memcached_callback_t flag, memcached_return_t *error);
51 libmemcached(3) can have callbacks set key execution points. These either
52 provide function calls at points in the code, or return pointers to
53 structures for particular usages.
55 memcached_callback_get() takes a callback flag and returns the structure or
56 function set by memcached_callback_set().
58 memcached_callback_set() changes the function/structure assigned by a
59 callback flag. No connections are reset.
61 You can use MEMCACHED_CALLBACK_USER_DATA to provide custom context if required for any
65 .B MEMCACHED_CALLBACK_CLEANUP_FUNCTION
67 When memcached_delete() is called this function will be excuted. At the
68 point of its execution all connections have been closed.
72 .B MEMCACHED_CALLBACK_CLONE_FUNCTION
74 When memcached_delete() is called this function will be excuted. At the
75 point of its execution all connections have been closed.
79 .B MEMCACHED_CALLBACK_PREFIX_KEY
81 You can set a value which will be used to create a domain for your keys.
82 The value specified here will be prefixed to each of your keys. The value can not
83 be greater then MEMCACHED_PREFIX_KEY_MAX_SIZE \- 1 and will reduce MEMCACHED_MAX_KEY by
84 the value of your key. The prefix key is only applied to the primary key,
85 not the master key. MEMCACHED_FAILURE will be returned if no key is set. In the case
86 of a key which is too long MEMCACHED_BAD_KEY_PROVIDED will be returned.
88 If you set a value with the value being NULL then the prefix key is disabled.
92 .B MEMCACHED_CALLBACK_USER_DATA
94 This allows you to store a pointer to a specifc piece of data. This can be
95 retrieved from inside of memcached_fetch_execute(). Cloning a memcached_st
96 will copy the pointer to the clone.
100 .B MEMCACHED_CALLBACK_MALLOC_FUNCTION
102 DEPRECATED: use memcached_set_memory_allocators instead.
106 .B MEMCACHED_CALLBACK_REALLOC_FUNCTION
108 DEPRECATED: use memcached_set_memory_allocators instead.
112 .B MEMCACHED_CALLBACK_FREE_FUNCTION
114 DEPRECATED: use memcached_set_memory_allocators instead.
118 .B MEMCACHED_CALLBACK_GET_FAILURE
120 This function implements the read through cache behavior. On failure of retrieval this callback will be called.
121 You are responsible for populating the result object provided. This result object will then be stored in the server and
122 returned to the calling process. You must clone the memcached_st in order to
123 make use of it. The value will be stored only if you return
124 MEMCACHED_SUCCESS or MEMCACHED_BUFFERED. Returning MEMCACHED_BUFFERED will
125 cause the object to be buffered and not sent immediatly (if this is the default behavior based on your connection setup this will happen automatically).
127 The prototype for this is:
128 memcached_return_t (*memcached_trigger_key)(memcached_st *ptr, char *key, size_t key_length, memcached_result_st *result);
132 .B MEMCACHED_CALLBACK_DELETE_TRIGGER
135 This function implements a trigger upon successful deletion of a key. The memcached_st structure will need to be cloned in order to make use of it.
137 The prototype for this is: typedef memcached_return_t (*memcached_trigger_delete_key)(memcached_st *ptr, char *key, size_t key_length);
140 memcached_callback_get() return the function or structure that was provided.
141 Upon error, nothing is set, null is returned, and the memcached_return_t
142 argument is set to MEMCACHED_FAILURE.
144 memcached_callback_set() returns MEMCACHED_SUCCESS upon successful setting,
145 otherwise MEMCACHED_FAILURE on error.
148 To find out more information please check:
149 \fI\%http://libmemcached.org/\fP
152 Brian Aker, <\fI\%brian@tangent.org\fP>
155 \fImemcached(1)\fP \fIlibmemcached(3)\fP \fImemcached_strerror(3)\fP
159 2011, Brian Aker DataDifferential, http://datadifferential.com/
160 .\" Generated by docutils manpage writer.