Update documentation.
[awesomized/libmemcached] / docs / memcached_result_st.rst
1 ========================
2 Working with result sets
3 ========================
4
5 .. index:: object: memcached_result_st
6
7 Work with memcached_result_st
8
9
10 --------
11 SYNOPSIS
12 --------
13
14 #include <libmemcached/memcached_pool.h>
15
16 .. c:function:: memcached_result_st * memcached_result_create (memcached_st *ptr, memcached_result_st *result);
17
18 .. c:function:: void memcached_result_free (memcached_result_st *result);
19
20 .. c:function:: const char * memcached_result_key_value (memcached_result_st *result);
21
22 .. c:function:: size_t memcached_result_key_length (const memcached_result_st *result);
23
24 .. c:function:: const char *memcached_result_value (memcached_result_st *ptr);
25
26 .. c:function:: size_t memcached_result_length (const memcached_result_st *ptr);
27
28 .. c:function:: uint32_t memcached_result_flags (const memcached_result_st *result)
29
30 .. c:function:: uint64_t memcached_result_cas (const memcached_result_st *result);
31
32 .. c:function:: memcached_return_t memcached_result_set_value (memcached_result_st *ptr, const char *value, size_t length)
33
34 .. c:function:: void memcached_result_set_flags (memcached_result_st *ptr, uint32_t flags)
35
36 .. c:function:: void memcached_result_set_expiration (memcached_result_st *ptr, time_t)
37
38 Compile and link with -lmemcachedutil -lmemcached
39
40
41
42 -----------
43 DESCRIPTION
44 -----------
45
46
47 libmemcached(3) can optionally return a memcached_result_st which acts as a
48 result object. The result objects have added benefits over the character
49 pointer returns, in that they are forward compatible with new return items
50 that future memcached servers may implement (the best current example of
51 this is the CAS return item). The structures can also be reused, which will
52 save on calls to malloc(3). It is suggested that you use result objects over
53 char \* return functions.
54
55 The structure of memcached_result_st has been encapsulated, you should not
56 write code to directly access members of the structure.
57
58 memcached_result_create() will either allocate memory for a
59 memcached_result_st or will initialize a structure passed to it.
60
61 memcached_result_free() will deallocate any memory attached to the
62 structure. If the structure was also allocated, it will deallocate it.
63
64 memcached_result_key_value() returns the key value associated with the
65 current result object.
66
67 memcached_result_key_length() returns the key length associated with the
68 current result object.
69
70 memcached_result_value() returns the result value associated with the
71 current result object.
72
73 memcached_result_length() returns the result length associated with the
74 current result object.
75
76 memcached_result_flags() returns the flags associated with the
77 current result object.
78
79 memcached_result_cas() returns the cas associated with the
80 current result object. This value will only be available if the server
81 tests it.
82
83 memcached_result_set_value() takes a byte array and a size and sets
84 the result to this value. This function is used for trigger responses.
85
86 void memcached_result_set_flags() takes a result structure and stores
87 a new value for the flags field.
88
89 void memcached_result_set_expiration(A) takes a result structure and stores
90 a new value for the expiration field (this is only used by read through
91 triggers).
92
93 You may wish to avoid using memcached_result_create(3) with a
94 stack based allocation. The most common issues related to ABI safety involve
95 heap allocated structures.
96
97
98 ------
99 RETURN
100 ------
101
102
103 Varies, see particular functions. All structures must have
104 memcached_result_free() called on them for cleanup purposes. Failure to
105 do this will result in leaked memory.
106
107
108 ----
109 HOME
110 ----
111
112
113 To find out more information please check:
114 `http://libmemcached.org/ <http://libmemcached.org/>`_
115
116
117 --------
118 SEE ALSO
119 --------
120
121 :manpage:`memcached(1)` :manpage:`libmemcached(3)` :manpage:`memcached_strerror(3)`