3 memcached_pool_create, memcached_pool_destroy, memcached_pool_push, memcached_pool_pop - Manage pools
7 C Client Library for memcached (libmemcachedutil, -lmemcachedutil)
11 #include <libmemcached/memcached_pool.h>
14 memcached_pool_create(memcached_st* mmc, int initial, int max);
17 memcached_pool_destroy(memcached_pool_st* pool);
20 memcached_pool_pop (memcached_pool_st* pool, bool block, memcached_return_t *rc);
23 memcached_pool_push(memcached_pool_st* pool, memcached_st *mmc);
25 memcached_st *memcached_create (memcached_st *ptr);
28 memcached_pool_behavior_set(memcached_pool_st *pool,
29 memcached_behavior_t flag,
33 memcached_pool_behavior_get(memcached_pool_st *pool,
34 memcached_behavior_t flag,
39 memcached_pool_create() is used to create a connection pool of objects you
40 may use to remove the overhead of using memcached_clone for short
41 lived C<memcached_st> objects. The mmc argument should be an
42 initialised C<memcached_st> structure, and a successfull invocation of
43 memcached_pool_create takes full ownership of the variable (until it
44 is released by memcached_pool_destroy). The C<initial> argument
45 specifies the initial size of the connection pool, and the C<max>
46 argument specifies the maximum size the connection pool should grow
47 to. Please note that the library will allocate a fixed size buffer
48 scaled to the max size of the connection pool, so you should not pass
49 MAXINT or some other large number here.
51 memcached_pool_destroy() is used to destroy the connection pool
52 created with memcached_pool_create() and release all allocated
53 resources. It will return the pointer to the C<memcached_st> structure
54 passed as an argument to memcached_pool_create(), and returns the
55 ownership of the pointer to the caller.
57 memcached_pool_pop() is used to grab a connection structure from the
58 connection pool. The block argument specifies if the function should
59 block and wait for a connection structure to be available if we try
60 to exceed the maximum size.
62 memcached_pool_push() is used to return a connection structure back to the pool.
64 memcached_pool_behavior_set() and memcached_pool_behagior_get() is
65 used to get/set behavior flags on all connections in the pool.
70 memcached_pool_create() returns a pointer to the newly created
71 memcached_pool_st structure. On an allocation failure, it returns
74 memcached_pool_destroy() returns the pointer (and ownership) to the
75 memcached_st structure used to create the pool. If connections are in
78 memcached_pool_pop() returns a pointer to a memcached_st structure
79 from the pool (or NULL if an allocation cannot be satisfied).
81 memcached_pool_push() returns MEMCACHED_SUCCESS upon success.
83 memcached_pool_behavior_get() and memcached_pool_behavior_get()
84 returns MEMCACHED_SUCCESS upon success.
88 To find out more information please check:
89 L<https://launchpad.net/libmemcached>
93 Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
97 memcached(1) libmemcached(3) memcached_create(3) memcached_free(3) libmemcachedutil(3) memcached_behavior_get(3) memcached_behavior_set(3)