3 memcached_return
memcached_flush(memcached_st
*ptr
, time_t expiration
)
6 size_t send_length
, sent_length
;
8 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
10 rc
= memcached_connect(ptr
);
12 if (rc
!= MEMCACHED_SUCCESS
)
13 rc
= MEMCACHED_SOME_ERRORS
;
15 for (x
= 0; x
< ptr
->number_of_hosts
; x
++)
18 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
19 "flush_all %llu\r\n", (unsigned long long)expiration
);
21 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
24 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
25 return MEMCACHED_WRITE_FAILURE
;
27 sent_length
= write(ptr
->hosts
[x
].fd
, buffer
, send_length
);
29 if (sent_length
== -1 || sent_length
!= send_length
)
30 return MEMCACHED_WRITE_FAILURE
;
32 rc
= memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, x
);
34 if (rc
!= MEMCACHED_SUCCESS
)
35 rc
= MEMCACHED_SOME_ERRORS
;