35
35
#include <libmemcached/memcached.h>
38
.B memcached_return_t memcached_increment (memcached_st *ptr, const char *key, size_t key_length, unsigned int offset, uint64_t *value);
42
.B memcached_return_t memcached_decrement (memcached_st *ptr, const char *key, size_t key_length, unsigned int offset, uint64_t *value);
46
.B memcached_return_t memcached_increment_with_initial (memcached_st *ptr, const char *key, size_t key_length, uint64_t offset, uint64_t initial, time_t expiration, uint64_t *value);
50
.B memcached_return_t memcached_decrement_with_initial (memcached_st *ptr, const char *key, size_t key_length, uint64_t offset, uint64_t initial, time_t expiration, uint64_t *value);
54
.B memcached_return_t memcached_increment_by_key (memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, unsigned int offset, uint64_t *value);
58
.B memcached_return_t memcached_decrement_by_key (memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, unsigned int offset, uint64_t *value);
62
.B memcached_return_t memcached_increment_with_initial_by_key (memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, uint64_t offset, uint64_t initial, time_t expiration, uint64_t *value);
66
.B memcached_return_t memcached_decrement_with_initial_by_key (memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, uint64_t offset, uint64_t initial, time_t expiration, uint64_t *value);
38
.B memcached_return_t memcached_increment(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint32_t\fI\ offset\fP, uint64_t\fI\ *value\fP)
42
.B memcached_return_t memcached_decrement(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint32_t\fI\ offset\fP, uint64_t\fI\ *value\fP)
46
.B memcached_return_t memcached_increment_with_initial(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint64_t\fI\ offset\fP, uint64_t\fI\ initial\fP, time_t\fI\ expiration\fP, uint64_t\fI\ *value\fP)
50
.B memcached_return_t memcached_decrement_with_initial(memcached_st\fI\ *ptr\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint64_t\fI\ offset\fP, uint64_t\fI\ initial\fP, time_t\fI\ expiration\fP, uint64_t\fI\ *value\fP)
54
.B memcached_return_t memcached_increment_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint32_t\fI\ offset\fP, uint64_t\fI\ *value\fP)
58
.B memcached_return_t memcached_decrement_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint32_t\fI\ offset\fP, uint64_t\fI\ *value\fP)
62
.B memcached_return_t memcached_increment_with_initial_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint64_t\fI\ offset\fP, uint64_t\fI\ initial\fP, time_t\fI\ expiration\fP, uint64_t\fI\ *value\fP)
66
.B memcached_return_t memcached_decrement_with_initial_by_key(memcached_st\fI\ *ptr\fP, const char\fI\ *group_key\fP, size_t\fI\ group_key_length\fP, const char\fI\ *key\fP, size_t\fI\ key_length\fP, uint64_t\fI\ offset\fP, uint64_t\fI\ initial\fP, time_t\fI\ expiration\fP, uint64_t\fI\ *value\fP)
69
69
Compile and link with \-lmemcached
73
73
(overflow and underflow are not detected). This gives you the ability to use
74
74
memcached to generate shared sequences of values.
76
memcached_increment() takes a key and keylength and increments the value by
77
the offset passed to it. The value is then returned via the unsigned int
78
value pointer you pass to it.
80
memcached_decrement() takes a key and keylength and decrements the value by
81
the offset passed to it. The value is then returned via the unsigned int
82
value pointer you pass to it.
84
memcached_increment_with_initial() takes a key and keylength and increments
85
the value by the offset passed to it. If the object specified by key does
86
not exist, one of two things may happen: If the expiration value is
87
MEMCACHED_EXPIRATION_NOT_ADD, the operation will fail. For all other
88
expiration values, the operation will succeed by seeding the value for that
89
key with a initial value to expire with the provided expiration time. The
90
flags will be set to zero.The value is then returned via the unsigned int
91
value pointer you pass to it.
93
memcached_decrement_with_initial() takes a key and keylength and decrements
94
the value by the offset passed to it. If the object specified by key does
95
not exist, one of two things may happen: If the expiration value is
96
MEMCACHED_EXPIRATION_NOT_ADD, the operation will fail. For all other
97
expiration values, the operation will succeed by seeding the value for that
98
key with a initial value to expire with the provided expiration time. The
99
flags will be set to zero.The value is then returned via the unsigned int
100
value pointer you pass to it.
102
memcached_increment_by_key(), memcached_decrement_by_key(),
103
memcached_increment_with_initial_by_key(), and
104
memcached_decrement_with_initial_by_key() are master key equivalents of the
76
memcached_increment takes a key and keylength and increments the value by
77
the offset passed to it. The value is then returned via the uint32_t
78
value pointer you pass to it.
80
memcached_decrement takes a key and keylength and decrements the value by
81
the offset passed to it. The value is then returned via the uint32_t
82
value pointer you pass to it.
84
memcached_increment_with_initial takes a key and keylength and increments
85
the value by the offset passed to it. If the object specified by key does
86
not exist, one of two things may happen: If the expiration value is
87
MEMCACHED_EXPIRATION_NOT_ADD, the operation will fail. For all other
88
expiration values, the operation will succeed by seeding the value for that
89
key with a initial value to expire with the provided expiration time. The
90
flags will be set to zero.The value is then returned via the uint32_t
91
value pointer you pass to it.
93
memcached_decrement_with_initial takes a key and keylength and decrements
94
the value by the offset passed to it. If the object specified by key does
95
not exist, one of two things may happen: If the expiration value is
96
MEMCACHED_EXPIRATION_NOT_ADD, the operation will fail. For all other
97
expiration values, the operation will succeed by seeding the value for that
98
key with a initial value to expire with the provided expiration time. The
99
flags will be set to zero.The value is then returned via the uint32_t
100
value pointer you pass to it.
102
\fI\%memcached_increment_by_key()\fP, \fI\%memcached_decrement_by_key()\fP,
103
\fI\%memcached_increment_with_initial_by_key()\fP, and
104
\fI\%memcached_decrement_with_initial_by_key()\fP are master key equivalents of the above.
108
A value of type \fBmemcached_return_t\fP is returned.
107
A value of type \fBmemcached_return_t\fP is returned.
109
108
On success that value will be \fBMEMCACHED_SUCCESS\fP.
110
Use memcached_strerror() to translate this value to a printable string.
109
Use memcached_strerror to translate this value to a printable string.
113
112
To find out more information please check: