memcache.h
changeset 49 10c7dce1a043
parent 48 1c67f512779b
equal deleted inserted replaced
48:1c67f512779b 49:10c7dce1a043
   290 /*
   290 /*
   291  * Allocate a new memcache context for use with other methods.
   291  * Allocate a new memcache context for use with other methods.
   292  *
   292  *
   293  * The given callback function is used for all requests in this context.
   293  * The given callback function is used for all requests in this context.
   294  */
   294  */
   295 struct memcache *memcache_alloc (memcache_cb cb_fn);
   295 struct memcache *memcache_alloc (memcache_cb cb_fn, char pipeline_requests);
   296 
   296 
   297 /*
   297 /*
   298  * Add a server to the pool of available servers.
   298  * Add a server to the pool of available servers.
   299  *
   299  *
   300  * At most <max_connections> connections will be kept open to this server, and additional requests will be queued.
   300  * At most <max_connections> connections will be kept open to this server, and additional requests will be queued.