3 memcached_return
memcached_delete(memcached_st
*ptr
, char *key
, size_t key_length
,
6 size_t send_length
, sent_length
;
8 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
9 unsigned int server_key
;
11 LIBMEMCACHED_MEMCACHED_DELETE_START();
13 rc
= memcached_connect(ptr
);
15 if (rc
!= MEMCACHED_SUCCESS
)
18 server_key
= memcached_generate_hash(key
, key_length
) % ptr
->number_of_hosts
;
21 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
22 "delete %.*s %llu\r\n", (int)key_length
, key
,
23 (unsigned long long)expiration
);
25 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
26 "delete %.*s\r\n", (int)key_length
, key
);
28 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
30 rc
= MEMCACHED_WRITE_FAILURE
;
34 sent_length
= send(ptr
->hosts
[server_key
].fd
, buffer
, send_length
, 0);
36 if (sent_length
== -1 || sent_length
!= send_length
)
38 rc
= MEMCACHED_WRITE_FAILURE
;
42 rc
= memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, server_key
);
44 if (rc
== MEMCACHED_DELETED
)
45 rc
= MEMCACHED_SUCCESS
;
47 LIBMEMCACHED_MEMCACHED_DELETE_END();