1MEMCACHED_FLUSH_BUFFERS(3) libmemcached-awesome MEMCACHED_FLUSH_BUFFERS(3)
2
3
4
6 memcached_flush_buffers - libmemcached Documentation
7
9 #include <libmemcached/memcached.h>
10 Compile and link with -lmemcached
11
12 memcached_return_t memcached_flush_buffers(memcached_st *ptr)
13
14 Parameters
15 ptr -- pointer to initialized memcached_st struct
16
17 Returns
18 memcached_return_t indicating success
19
21 memcached_flush_buffers() is used in conjunction with
22 MEMCACHED_BEHAVIOR_BUFFER_REQUESTS to flush all buffers by sending the
23 buffered commands to the server for processing.
24
26 A value of type memcached_return_t is returned. On success that value
27 will be MEMCACHED_SUCCESS. Use memcached_strerror() to translate this
28 value to a printable string.
29
31 memcached(1) libmemcached(3) memcached_strerror(3) memcached_behavā
32 ior(3)
33
34
35
36
371.1 Nov 09, 2022 MEMCACHED_FLUSH_BUFFERS(3)