3 memcached_return
memcached_delete(memcached_st
*ptr
, char *key
, size_t key_length
,
8 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
9 unsigned int server_key
;
11 rc
= memcached_connect(ptr
);
13 if (rc
!= MEMCACHED_SUCCESS
)
16 server_key
= memcached_generate_hash(key
, key_length
) % ptr
->number_of_hosts
;
19 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
20 "delete %.*s %u\r\n", key_length
, key
, expiration
);
22 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
23 "delete %.*s\r\n", key_length
, key
);
24 if ((write(ptr
->hosts
[server_key
].fd
, buffer
, send_length
) == -1))
26 fprintf(stderr
, "failed set on %.*s TCP\n", key_length
+1, key
);
28 return MEMCACHED_WRITE_FAILURE
;
31 return memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, server_key
);