3 static memcached_return
memcached_auto(memcached_st
*ptr
,
5 char *key
, size_t key_length
,
11 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
12 unsigned int server_key
;
14 rc
= memcached_connect(ptr
);
16 if (rc
!= MEMCACHED_SUCCESS
)
19 server_key
= memcached_generate_hash(key
, key_length
) % ptr
->number_of_hosts
;
21 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
22 "%s %.*s %u\r\n", verb
,
26 if ((send(ptr
->hosts
[server_key
].fd
, buffer
, send_length
, 0) == -1))
28 fprintf(stderr
, "failed set on %.*s TCP\n", key_length
+1, key
);
30 return MEMCACHED_WRITE_FAILURE
;
33 memset(buffer
, 0, MEMCACHED_DEFAULT_COMMAND_SIZE
);
34 send_length
= read(ptr
->hosts
[server_key
].fd
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
);
36 if (!memcmp(buffer
, "ERROR\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE
))
39 rc
= MEMCACHED_PROTOCOL_ERROR
;
41 else if (!memcmp(buffer
, "NOT_FOUND\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE
))
44 rc
= MEMCACHED_NOTFOUND
;
48 *value
= strtol(buffer
, (char **)NULL
, 10);
49 rc
= MEMCACHED_SUCCESS
;
55 memcached_return
memcached_increment(memcached_st
*ptr
,
56 char *key
, size_t key_length
,
60 return memcached_auto(ptr
, "incr", key
, key_length
, offset
, value
);
63 memcached_return
memcached_decrement(memcached_st
*ptr
,
64 char *key
, size_t key_length
,
68 return memcached_auto(ptr
, "decr", key
, key_length
, offset
, value
);