X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_servers.pod;h=125e1f4b1ba169c33d6fa3c7df885fd3fe2305f9;hb=0c1b3cdcc0e05bc339d410f80f34a3521dbc785c;hp=fa0881accf18d0ddbc4872d9d337042122dbcbf8;hpb=4f6aad18ceca09083cbe56e5956247f54b233445;p=awesomized%2Flibmemcached diff --git a/docs/memcached_servers.pod b/docs/memcached_servers.pod old mode 100755 new mode 100644 index fa0881ac..125e1f4b --- a/docs/memcached_servers.pod +++ b/docs/memcached_servers.pod @@ -1,6 +1,6 @@ =head1 NAME -memcached_server_count, memcached_server_list, memcached_server_add, memcached_server_push +memcached_server_count, memcached_server_list, memcached_server_add, memcached_server_push - Manage server list =head1 LIBRARY @@ -17,18 +17,27 @@ C Client Library for memcached (libmemcached, -lmemcached) memcached_return memcached_server_add (memcached_st *ptr, - char *hostname, + const char *hostname, + unsigned int port); + + memcached_return + memcached_server_add_udp (memcached_st *ptr, + const char *hostname, unsigned int port); memcached_return memcached_server_add_unix_socket (memcached_st *ptr, - char *hostname, - unsigned int port); + const char *socket); memcached_return memcached_server_push (memcached_st *ptr, memcached_server_st *list); + memcached_server_st * + memcached_server_by_key (memcached_st *ptr, + const char *key, size_t key_length, + memcached_return *error); + =head1 DESCRIPTION libmemcached(3) performs operations on a list of hosts. The order of these @@ -39,17 +48,26 @@ memcached_server_st(3). memcached_server_count() provides you a count of the current number of servers being used by a C structure. -memcached_server_list() is used to provide an array of all connected hosts. +memcached_server_list() is used to provide an array of all defined hosts. You are responsible for freeing this list (aka it is not a pointer to the currently used structure). -memcached_server_add() pushes a single server into the C +memcached_server_add() pushes a single TCP server into the C +structure. This server will be placed at the end. Duplicate servers are +allowed, so duplication is not checked. Executing this function with the +C behavior set will result in a +C. + +memcached_server_add_udp() pushes a single UDP server into the C structure. This server will be placed at the end. Duplicate servers are -allowed, so duplication is not checked. +allowed, so duplication is not checked. Executing this function with out +setting the C behavior will result in a +C. memcached_server_add_unix_socket() pushes a single UNIX socket into the C structure. This UNIX socket will be placed at the end. -Duplicate servers are allowed, so duplication is not checked. +Duplicate servers are allowed, so duplication is not checked. The length +of the filename must be one character less then MEMCACHED_MAX_HOST_LENGTH. memcached_server_push() pushes an array of C into the C structure. These servers will be placed at the @@ -57,6 +75,12 @@ end. Duplicate servers are allowed, so duplication is not checked. A copy is made of structure so the list provided (and any operations on the list) are not saved. +memcached_server_by_key() allows you to provide a key and retrieve the +server which would be used for assignment. This structure is cloned +from its original structure and must be freed. If NULL is returned you +should consult *error. The returning structure should be freed with +memcached_server_free(). + =head1 RETURN Varies, see particular functions.