X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_delete.c;h=dea5c92ff367c2df7631cab331e9037f54a814d9;hb=65c53b0994e903cceda1adc7f6df0c8ea72f12c4;hp=6fa2d4a8ff6833a3527f38ef57a31921439e1e7e;hpb=d3ef73cd144dfdbcaff41d3373e4458fb351f7af;p=m6w6%2Flibmemcached diff --git a/lib/memcached_delete.c b/lib/memcached_delete.c index 6fa2d4a8..dea5c92f 100644 --- a/lib/memcached_delete.c +++ b/lib/memcached_delete.c @@ -3,19 +3,29 @@ memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_length, time_t expiration) { - size_t send_length, sent_length; - memcached_return rc; + return memcached_delete_by_key(ptr, key, key_length, + key, key_length, expiration); +} + +memcached_return memcached_delete_by_key(memcached_st *ptr, + char *master_key, size_t master_key_length, + char *key, size_t key_length, + time_t expiration) +{ + char to_write= (ptr->flags & MEM_BUFFER_REQUESTS) ? 0 : 1; + size_t send_length; char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE]; unsigned int server_key; + uint8_t replicas= 0; + memcached_return rc[MEMCACHED_MAX_REPLICAS]; - LIBMEMCACHED_MEMCACHED_DELETE_START(); + unlikely (key_length == 0) + return MEMCACHED_NO_KEY_PROVIDED; - rc= memcached_connect(ptr); + unlikely (ptr->hosts == NULL || ptr->number_of_hosts == 0) + return MEMCACHED_NO_SERVERS; - if (rc != MEMCACHED_SUCCESS) - return rc; - - server_key= memcached_generate_hash(ptr, key, key_length); + server_key= memcached_generate_hash(ptr, master_key, master_key_length); if (expiration) send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, @@ -27,25 +37,46 @@ memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_lengt if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) { - rc= MEMCACHED_WRITE_FAILURE; + rc[replicas]= MEMCACHED_WRITE_FAILURE; goto error; } - sent_length= memcached_io_write(ptr, server_key, buffer, send_length, 1); - - if (sent_length == -1 || sent_length != send_length) + do { - rc= MEMCACHED_WRITE_FAILURE; - goto error; - } + rc[replicas]= memcached_do(&ptr->hosts[server_key], buffer, send_length, to_write); + if (rc[replicas] != MEMCACHED_SUCCESS) + goto error; - rc= memcached_response(ptr, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, server_key); + if ((ptr->flags & MEM_BUFFER_REQUESTS)) + { + rc[replicas]= MEMCACHED_BUFFERED; + } + else + { + rc[replicas]= memcached_response(&ptr->hosts[server_key], buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, NULL); + if (rc[replicas] == MEMCACHED_DELETED) + rc[replicas]= MEMCACHED_SUCCESS; + } - if (rc == MEMCACHED_DELETED) - rc= MEMCACHED_SUCCESS; + /* On error we just jump to the next potential server */ +error: + if (ptr->number_of_replicas > 1) + { + if (server_key == (ptr->number_of_hosts - 1)) + server_key= 0; + else + server_key++; + } + } while ((++replicas) < ptr->number_of_replicas); - LIBMEMCACHED_MEMCACHED_DELETE_END(); + /* As long as one object gets stored, we count this as a success */ + while (replicas--) + { + if (rc[replicas] == MEMCACHED_DELETED) + return MEMCACHED_SUCCESS; + else if (rc[replicas] == MEMCACHED_DELETED) + rc[replicas]= MEMCACHED_BUFFERED; + } -error: - return rc; + return rc[0]; }