e2067c157724a2fa3d54831f0e5e92a71e08959e
[awesomized/libmemcached] / docs / memcached_flush_buffers.rst
1 .. highlight:: perl
2
3
4 memcached_flush_buffers
5 ***********************
6
7
8 Flush buffers and send buffered commands
9
10
11 *******
12 LIBRARY
13 *******
14
15
16 C Client Library for memcached (libmemcached, -lmemcached)
17
18
19 ********
20 SYNOPSIS
21 ********
22
23
24
25 .. code-block:: perl
26
27 #include <libmemcached/memcached.h>
28
29 memcached_return_t
30 memcached_flush_buffers (memcached_st *ptr);
31
32
33
34 ***********
35 DESCRIPTION
36 ***********
37
38
39 memcached_flush_buffers() is used in conjunction with
40 MEMCACHED_BEHAVIOR_BUFFER_REQUESTS (see memcached_behavior(3)) to flush
41 all buffers by sending the buffered commands to the server for processing.
42
43
44 ******
45 RETURN
46 ******
47
48
49 A value of type \ ``memcached_return_t``\ is returned
50 On success that value will be \ ``MEMCACHED_SUCCESS``\ .
51 Use memcached_strerror() to translate this value to a printable string.
52
53
54 ****
55 HOME
56 ****
57
58
59 To find out more information please check:
60 `https://launchpad.net/libmemcached <https://launchpad.net/libmemcached>`_
61
62
63 ******
64 AUTHOR
65 ******
66
67
68 Trond Norbye, <trond.norbye@gmail.com>
69
70
71 ********
72 SEE ALSO
73 ********
74
75
76 memcached(1) libmemcached(3) memcached_strerror(3) memcached_behavior(3)
77