~piotr-sikora/libmemcached/fix-tests-on-openbsd

« back to all changes in this revision

Viewing changes to docs/memcached_get.rst

  • Committer: Brian Aker
  • Date: 2011-04-28 00:30:03 UTC
  • mfrom: (929.1.88 libmemcached-build2)
  • Revision ID: brian@tangent.org-20110428003003-bm1qzgmg9kaawp5d
Merge in code for C++ compiling of libmemcached.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
upon success and NULL will be returned on failure. MEMCACHD_END is returned
66
66
by the \*error value when all objects that have been found are returned.
67
67
The final value upon MEMCACHED_END is null. Values returned by
68
 
memcached_fetch() musted be free'ed by the caller. memcached_fetch() will
 
68
memcached_fetch() must be freed by the caller. memcached_fetch() will
69
69
be DEPRECATED in the near future, memcached_fetch_result() should be used
70
70
instead.
71
71
 
89
89
similar to memcached_mget(), but it may trigger the supplied callbacks
90
90
with result sets while sending out the queries. If you try to perform
91
91
a really large multiget with memcached_mget() you may encounter a
92
 
deadlock in the OS kernel (we fail to write data to the socket because
 
92
deadlock in the OS kernel (it will fail to write data to the socket because
93
93
the input buffer is full). memcached_mget_execute() solves this
94
94
problem by processing some of the results before continuing sending
95
95
out requests. Please note that this function is only available in the
100
100
a master key that is used for determining which server an object was stored
101
101
if key partitioning was used for storage.
102
102
 
103
 
All of the above functions are not testsed when the \ ``MEMCACHED_BEHAVIOR_USE_UDP``\ 
 
103
All of the above functions are not tested when the \ ``MEMCACHED_BEHAVIOR_USE_UDP``\ 
104
104
has been set. Executing any of these functions with this behavior on will result in
105
 
\ ``MEMCACHED_NOT_SUPPORTED``\  being returned or, for those functions which do not return
 
105
\ ``MEMCACHED_NOT_SUPPORTED``\  being returned, or for those functions which do not return
106
106
a \ ``memcached_return_t``\ , the error function parameter will be set to
107
107
\ ``MEMCACHED_NOT_SUPPORTED``\ .
108
108