X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_quit.pod;h=270dd4674e346dc92411471f95d586b78dbd07aa;hb=b175c6025c67cb8fa756750d53fb96fd888076de;hp=b438e3c0bf389e94c28a1149476007b2605e2e47;hpb=a11143256264a00e7437fa23ec8ff5196c5a5c0b;p=m6w6%2Flibmemcached diff --git a/docs/memcached_quit.pod b/docs/memcached_quit.pod old mode 100755 new mode 100644 index b438e3c0..270dd467 --- a/docs/memcached_quit.pod +++ b/docs/memcached_quit.pod @@ -1,6 +1,6 @@ =head1 NAME -memcached_quit +memcached_quit - Disconnect from all servers =head1 LIBRARY @@ -8,16 +8,16 @@ C Client Library for memcached (libmemcached, -lmemcached) =head1 SYNOPSIS -#include -void memcached_quit(memcached_st *ptr); + #include -=head1 DESCRIPTION + void memcached_quit (memcached_st *ptr); +=head1 DESCRIPTION memcached_quit() will disconnect you from all currently connected servers. -It will also reset the state of the connection (aka any memcached_fetch you +It will also reset the state of the connection (ie, any memcached_fetch() you are in the middle of will be terminated). This function is called -automatically when you call memcached_free() on the memcached_st structure. +automatically when you call memcached_free() on the C structure. You do not need to call this on your own. All operations to change server hashes and parameters will handle connections to the server for you. This @@ -26,15 +26,18 @@ reset connections during the middle of a memcached_fetch(). =head1 RETURN -memcached_quit() returns memcached_return. The value on success will be MEMCACHED_SUCCESS. For all errors check with memcached_strerror(). +A value of type C is returned +On success that value will be C. +Use memcached_strerror() to translate this value to a printable string. =head1 HOME -To find out more information please check: http://tangent.org/552/libmemcached.html +To find out more information please check: +L =head1 AUTHOR -Brian Aker, brian@tangent.org +Brian Aker, Ebrian@tangent.orgE =head1 SEE ALSO