3 static memcached_return_t
memcached_flush_binary(memcached_st
*ptr
,
5 static memcached_return_t
memcached_flush_textual(memcached_st
*ptr
,
8 memcached_return_t
memcached_flush(memcached_st
*ptr
, time_t expiration
)
10 memcached_return_t rc
;
12 LIBMEMCACHED_MEMCACHED_FLUSH_START();
13 if (ptr
->flags
.binary_protocol
)
14 rc
= memcached_flush_binary(ptr
, expiration
);
16 rc
= memcached_flush_textual(ptr
, expiration
);
17 LIBMEMCACHED_MEMCACHED_FLUSH_END();
21 static memcached_return_t
memcached_flush_textual(memcached_st
*ptr
,
26 memcached_return_t rc
;
27 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
29 unlikely (memcached_server_count(ptr
) == 0)
30 return MEMCACHED_NO_SERVERS
;
32 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
34 bool no_reply
= ptr
->flags
.no_reply
;
35 memcached_server_write_instance_st instance
=
36 memcached_server_instance_fetch(ptr
, x
);
39 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
40 "flush_all %llu%s\r\n",
41 (unsigned long long)expiration
, no_reply
? " noreply" : "");
43 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
44 "flush_all%s\r\n", no_reply
? " noreply" : "");
46 rc
= memcached_do(instance
, buffer
, send_length
, true);
48 if (rc
== MEMCACHED_SUCCESS
&& !no_reply
)
49 (void)memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
52 return MEMCACHED_SUCCESS
;
55 static memcached_return_t
memcached_flush_binary(memcached_st
*ptr
,
58 protocol_binary_request_flush request
= {.bytes
= {0}};
60 unlikely (memcached_server_count(ptr
) == 0)
61 return MEMCACHED_NO_SERVERS
;
63 request
.message
.header
.request
.magic
= (uint8_t)PROTOCOL_BINARY_REQ
;
64 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSH
;
65 request
.message
.header
.request
.extlen
= 4;
66 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
67 request
.message
.header
.request
.bodylen
= htonl(request
.message
.header
.request
.extlen
);
68 request
.message
.body
.expiration
= htonl((uint32_t) expiration
);
70 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
72 memcached_server_write_instance_st instance
=
73 memcached_server_instance_fetch(ptr
, x
);
75 if (ptr
->flags
.no_reply
)
77 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSHQ
;
81 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSH
;
84 if (memcached_do(instance
, request
.bytes
, sizeof(request
.bytes
), true) != MEMCACHED_SUCCESS
)
86 memcached_io_reset(instance
);
87 return MEMCACHED_WRITE_FAILURE
;
91 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
93 memcached_server_write_instance_st instance
=
94 memcached_server_instance_fetch(ptr
, x
);
96 if (memcached_server_response_count(instance
) > 0)
97 (void)memcached_response(instance
, NULL
, 0, NULL
);
100 return MEMCACHED_SUCCESS
;