X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_result_st.pod;h=bd8e21fa377412978e2473587d100b308112f949;hb=933e5a561b10c1450563f1421b83d72396b805d2;hp=2296b901fd84dc440b9f0f49350f6b6dec0b23e4;hpb=d4dc795f136a3a652c5b13b4d818345c6080bceb;p=awesomized%2Flibmemcached diff --git a/docs/memcached_result_st.pod b/docs/memcached_result_st.pod index 2296b901..bd8e21fa 100755 --- a/docs/memcached_result_st.pod +++ b/docs/memcached_result_st.pod @@ -27,10 +27,17 @@ C Client Library for memcached (libmemcached, -lmemcached) size_t memcached_result_length(memcached_result_st *ptr); - uint16_t memcached_result_flags(memcached_result_st *result) + uint32_t memcached_result_flags(memcached_result_st *result) uint64_t memcached_result_cas(memcached_result_st *result); + memcached_return memcached_result_set_value (memcached_result_st *ptr, + char *value, size_t length) + + void memcached_result_set_flags(memcached_result_st *ptr, uint32_t flags) + + void memcached_result_set_expiration(memcached_result_st *ptr, time_t) + =head1 DESCRIPTION libmemcached(3) can optionally return a memcached_result_st which acts as a @@ -69,6 +76,16 @@ memcached_result_cas() returns the cas associated with the current result object. This value will only be available if the server supports it. +memcached_result_set_value() takes a byte array and a size and sets +the result to this value. This function is used for trigger responses. + +void memcached_result_set_flags() takes a result structure and stores +a new value for the flags field. + +void memcached_result_set_expiration(A) takes a result structure and stores +a new value for the expiration field (this is only used by read through +triggers). + =head1 RETURN