Added support for MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH
authorTrond Norbye <trond.norbye@sun.com>
Sun, 3 May 2009 19:27:56 +0000 (12:27 -0700)
committerTrond Norbye <trond.norbye@sun.com>
Sun, 3 May 2009 19:27:56 +0000 (12:27 -0700)
commitb10a03e4afb5514f1c86f5c75b9bfc7d46ce49b4
tree2bcbe1f75702f236e68b6d108913b24fe61be0de
parentdd7a2e44d9c5bb28e0b4673cf02aa6a1a8aa2b77
Added support for MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH

From the man page:
The binary protocol works a bit different than the textual protocol in the
way that a multiget is implemented as a pipe of single get-operations that
is sent to the server in a chunk. If you use large multigets you may improve
the latency by setting this value so that you send out the first chunk of
requests when you hit the specified limit, allowing the server to start
processing the request and send the data back while the rest of the
requests is created.
docs/memcached_behavior.pod
libmemcached/memcached.c
libmemcached/memcached.h
libmemcached/memcached_behavior.c
libmemcached/memcached_constants.h
libmemcached/memcached_get.c
tests/function.c