X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_get.rst;h=d3f5806ff1e6fef62889e13a98009269040f39a8;hb=dc9533f1e17289d98c9fc7e5bb953774f625c033;hp=0c8e88194c2bf064800d1337ef03eadcc64011c0;hpb=16ba6539e831e2abcef9dcf56fa26e3a0d5c7f91;p=m6w6%2Flibmemcached diff --git a/docs/memcached_get.rst b/docs/memcached_get.rst index 0c8e8819..d3f5806f 100644 --- a/docs/memcached_get.rst +++ b/docs/memcached_get.rst @@ -110,9 +110,17 @@ All objects returned must be freed by the calling application. error. You must look at the value of error to determine what the actual error was. -:c:type:`MEMCACHED_KEY_TOO_BIG` is set to error whenever -:c:func:`memcached_fetch()` was used and the key was set larger then -:c:type:`MEMCACHED_MAX_KEY`, which was the largest key allowed for the original memcached ascii server. +:c:func:`memcached_fetch_execute()` return :c:type:`MEMCACHED_SUCCESS` if +all keys were successful. :c:type:`MEMCACHED_NOTFOUND` will be return if no +keys at all were found. + +:c:func:`memcached_fetch()` and :c:func:`memcached_fetch_result()` set error +to :c:type:`MEMCACHED_END` upon successful conclusion. +:c:type:`MEMCACHED_NOTFOUND` will be return if no keys at all were found. + +:c:type:`MEMCACHED_KEY_TOO_BIG` is set to error whenever :c::func:`memcached_fetch()` was used +and the key was set larger then :c:type:`MEMCACHED_MAX_KEY`, which was the largest +key allowed for the original memcached ascii server. ----