X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached.h;h=a9c6a6835719d7ab5df623b8997d0f6212e8a59f;hb=19a9f1981b279acac6295b9316f68eb0f3543c24;hp=281f30b6e0b545282e7666dac3e398e95afbd0b4;hpb=f602a9cb2e78bdde242004d299b66931e13a00bb;p=m6w6%2Flibmemcached diff --git a/libmemcached/memcached.h b/libmemcached/memcached.h index 281f30b6..a9c6a683 100644 --- a/libmemcached/memcached.h +++ b/libmemcached/memcached.h @@ -34,7 +34,7 @@ extern "C" { #endif /* These are Private and should not be used by applications */ -#define MEMCACHED_VERSION_STRING_LENGTH 12 +#define MEMCACHED_VERSION_STRING_LENGTH 24 /* string value */ struct memcached_continuum_item_st { @@ -42,7 +42,7 @@ struct memcached_continuum_item_st { uint32_t value; }; -#define LIBMEMCACHED_VERSION_STRING "0.27" +#define LIBMEMCACHED_VERSION_STRING "0.29" struct memcached_analysis_st { uint64_t most_used_bytes; @@ -117,6 +117,8 @@ struct memcached_st { uint32_t server_failure_limit; uint32_t io_msg_watermark; uint32_t io_bytes_watermark; + uint32_t io_key_prefetch; + time_t next_distribution_rebuild; }; @@ -137,6 +139,20 @@ memcached_return memcached_decrement(memcached_st *ptr, const char *key, size_t key_length, uint32_t offset, uint64_t *value); +memcached_return 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); +memcached_return 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); void memcached_stat_free(memcached_st *, memcached_stat_st *); memcached_stat_st *memcached_stat(memcached_st *ptr, char *args, memcached_return *error); memcached_return memcached_stat_servername(memcached_stat_st *stat, char *args,