File shuffling
[m6w6/libmemcached] / docs / memcached_servers.pod
1 =head1 NAME
2
3 memcached_server_count, memcached_server_list, memcached_server_add, memcached_server_push, memcached_server_get_last_disconnect, memcached_server_cursor - Manage server list
4
5 =head1 LIBRARY
6
7 C Client Library for memcached (libmemcached, -lmemcached)
8
9 =head1 SYNOPSIS
10
11 #include <memcached.h>
12
13 uint32_t memcached_server_count (memcached_st *ptr);
14
15 memcached_server_st *
16 memcached_server_list (memcached_st *ptr);
17
18 memcached_return_t
19 memcached_server_add (memcached_st *ptr,
20 const char *hostname,
21 in_port_t port);
22
23 memcached_return_t
24 memcached_server_add_udp (memcached_st *ptr,
25 const char *hostname,
26 in_port_t port);
27
28 memcached_return_t
29 memcached_server_add_unix_socket (memcached_st *ptr,
30 const char *socket);
31
32 memcached_return_t
33 memcached_server_push (memcached_st *ptr,
34 memcached_server_st *list);
35
36 memcached_server_st *
37 memcached_server_by_key (memcached_st *ptr,
38 const char *key, size_t key_length,
39 memcached_return_t *error);
40
41 memcached_server_st *
42 memcached_server_get_last_disconnect (memcached_st *ptr)
43
44 memcached_return_t
45 memcached_server_cursor(memcached_st *ptr,
46 memcached_server_fn *callback,
47 void *context,
48 uint32_t number_of_callbacks);
49
50
51 =head1 DESCRIPTION
52
53 libmemcached(3) performs operations on a list of hosts. The order of these
54 hosts determine routing to keys. Functions are provided to add keys to
55 memcached_st structures. To manipulate lists of servers see
56 memcached_server_st(3).
57
58 memcached_server_count() provides you a count of the current number of
59 servers being used by a C<memcached_st> structure.
60
61 memcached_server_list() is used to provide an array of all defined hosts.
62 You are responsible for freeing this list (aka it is not a pointer to the
63 currently used structure).
64
65 memcached_server_add() pushes a single TCP server into the C<memcached_st>
66 structure. This server will be placed at the end. Duplicate servers are
67 allowed, so duplication is not checked. Executing this function with the
68 C<MEMCACHED_BEHAVIOR_USE_UDP> behavior set will result in a
69 C<MEMCACHED_INVALID_HOST_PROTOCOL>.
70
71 memcached_server_add_udp() pushes a single UDP server into the C<memcached_st>
72 structure. This server will be placed at the end. Duplicate servers are
73 allowed, so duplication is not checked. Executing this function with out
74 setting the C<MEMCACHED_BEHAVIOR_USE_UDP> behavior will result in a
75 C<MEMCACHED_INVALID_HOST_PROTOCOL>.
76
77 memcached_server_add_unix_socket() pushes a single UNIX socket into the
78 C<memcached_st> structure. This UNIX socket will be placed at the end.
79 Duplicate servers are allowed, so duplication is not checked. The length
80 of the filename must be one character less then MEMCACHED_MAX_HOST_LENGTH.
81
82 memcached_server_push() pushes an array of C<memcached_server_st> into
83 the C<memcached_st> structure. These servers will be placed at the
84 end. Duplicate servers are allowed, so duplication is not checked. A
85 copy is made of structure so the list provided (and any operations on
86 the list) are not saved.
87
88 memcached_server_by_key() allows you to provide a key and retrieve the
89 server which would be used for assignment. This structure is cloned
90 from its original structure and must be freed. If NULL is returned you
91 should consult *error. The returning structure should be freed with
92 memcached_server_free().
93
94 memcached_server_get_last_disconnect() returns a pointer to the last server
95 for which there was a connection problem. It does not mean this particular
96 server is currently dead but if the library is reporting a server is,
97 the returned server is a very good candidate.
98
99 memcached_server_cursor() takes a memcached_st and loops through the
100 list of hosts currently in the cursor calling the list of callback
101 functions provided. You can optionally pass in a value via
102 context which will be provided to each callback function. An error
103 return from any callback will terminate the loop. memcached_server_cursor()
104 is passed the original caller memcached_st in its current state.
105
106 =head1 RETURN
107
108 Varies, see particular functions.
109
110 =head1 HOME
111
112 To find out more information please check:
113 L<https://launchpad.net/libmemcached>
114
115 =head1 AUTHOR
116
117 Brian Aker, E<lt>brian@tangent.orgE<gt>
118
119 =head1 SEE ALSO
120
121 memcached(1) libmemcached(3) memcached_strerror(3)
122
123 =cut
124