Merge in additional documentation.
authorBrian Aker <brian@tangent.org>
Tue, 19 Apr 2011 22:43:26 +0000 (15:43 -0700)
committerBrian Aker <brian@tangent.org>
Tue, 19 Apr 2011 22:43:26 +0000 (15:43 -0700)
17 files changed:
docs/hashkit_create.rst
docs/libmemcached.rst
docs/memcached_callback.rst
docs/memcached_delete.rst
docs/memcached_dump.rst
docs/memcached_get.rst
docs/memcached_memory_allocators.rst
docs/memcached_result_st.rst
docs/memcached_sasl.rst
docs/memcached_set.rst
docs/memcached_version.rst
docs/memcapable.rst
docs/memcp.rst
docs/memdump.rst
docs/memerror.rst
docs/memflush.rst
docs/memslap.rst

index cf11e83e00d2b21907fdced0894b24339fe41162..e0c9c71c0fd48c06cae541faad9347fad45def16 100644 (file)
@@ -3,35 +3,24 @@ Creating a hashkit structure
 ============================
 
 
-Create and destroy hashkit objects
-
-
--------
-LIBRARY
--------
-
-
-C Library for hashing algorithms (libmemcached, -lhashkit)
-
-
 --------
 SYNOPSIS
 --------
 
+C Library for hashing algorithms (libmemcached, -lhashkit)
 
 
-.. code-block:: perl
-
-   #include <libmemcached/hashkit.h>
-   hashkit_st *hashkit_create(hashkit_st *hash);
+#include <libhashkit/hashkit.h>
  
-   hashkit_st *hashkit_clone(hashkit_st *destination, const hashkit_st *ptr);
+.. c:function:: hashkit_st *hashkit_create(hashkit_st *hash);
  
-   void hashkit_free(hashkit_st *hash);
-   bool hashkit_is_allocated(const hashkit_st *hash);
+.. c:function:: hashkit_st *hashkit_clone(hashkit_st *destination, const hashkit_st *ptr);
+
+.. c:function:: void hashkit_free(hashkit_st *hash);
+
+.. c:function:: bool hashkit_is_allocated(const hashkit_st *hash);
 
+Compile and link with -lmemcached
 
 
 -----------
index bb0f0461d3cd932374bba50c038939fd5a144d26..23ec93b49a9974e6b0b7646d00b96a6f747d1a62 100644 (file)
@@ -10,6 +10,17 @@ SYNOPSIS
 
 Compile and link with -lmemcached
 
+libMemcached is an open source C/C++ client library and tools for the memcached server (http://danga.com/memcached). It has been designed to be light on memory usage, thread safe, and provide full access to server side methods.
+
+libMemcached was designed to provide the greatest number of options to use Memcached. Some of the features provided:
+
+1. Asynchronous and Synchronous Transport Support.
+2. Consistent Hashing and Distribution.
+3. Tunable Hashing algorithm to match keys.
+4. Access to large object support.
+5. Local replication.
+6. A complete reference guide and documentation to the API.
+7. Tools to Manage your Memcached networks.
 
 -----------
 DESCRIPTION
@@ -21,14 +32,14 @@ system, generic in nature, but intended for use in speeding up dynamic web
 applications by alleviating database load." `http://danga.com/memcached/ <http://danga.com/memcached/>`_
 
 \ **libmemcached**\  is a small, thread-safe client library for the
-memcached protocol. The code has all been written with an eye to allow
+memcached protocol. The code has all been written to allow
 for both web and embedded usage. It handles the work behind routing
-particular keys to specific servers that you specify (and values are
-matched based on server order as supplied by you). It implements both
-a modula and consistent method of object distribution.
+individual keys to specific servers specified by the developer (and values are
+matched based on server order as supplied by the user). It implements
+a modular and consistent method of object distribution.
 
 There are multiple implemented routing and hashing methods. See the
-memcached_behavior_set() manpage.
+memcached_behavior_set() manpage for more information.
 
 All operations are performed against a \ ``memcached_st``\  structure.
 These structures can either be dynamically allocated or statically
@@ -117,9 +128,9 @@ THREADS AND PROCESSES
 ---------------------
 
 
-When using threads or forked processes it is important to keep an instance
+When using threads or forked processes it is important to keep one instance
 of \ ``memcached_st``\  per process or thread. Without creating your own locking
-structures you can not share a single \ ``memcached_st``\ . You can though call
+structures you can not share a single \ ``memcached_st``\ . However, you can call
 memcached_quit(3) on a \ ``memcached_st``\  and then use the resulting cloned
 structure.
 
index 787bc49ad77c8d66811f532dee4745591136c033..aac70391f2fcc68eb4d98f44f0f677f4684c20d2 100644 (file)
@@ -41,73 +41,71 @@ function set by memcached_callback_set().
 memcached_callback_set() changes the function/structure assigned by a
 callback flag. No connections are reset.
 
-You can use MEMCACHED_CALLBACK_USER_DATA to provide custom context if required for any 
-of the callbacks
+You can use MEMCACHED_CALLBACK_USER_DATA to provide custom context if required for any of the callbacks.
 
 
 .. c:var:: MEMCACHED_CALLBACK_CLEANUP_FUNCTION
  
- When memcached_delete() is called this function will be excuted. At the
- point of its execution all connections have been closed.
+When memcached_delete() is called this function will be excuted. At the point of its execution all connections are closed.
  
 
 
 .. c:var:: MEMCACHED_CALLBACK_CLONE_FUNCTION
  
- When memcached_delete() is called this function will be excuted. At the
- point of its execution all connections have been closed.
+When memcached_delete() is called this function will be excuted. At the
+point of its execution all connections are closed.
  
 
 
 .. c:var:: MEMCACHED_CALLBACK_PREFIX_KEY
  
- You can set a value which will be used to create a domain for your keys.
- The value specified here will be prefixed to each of your keys. The value can not
- be greater then MEMCACHED_PREFIX_KEY_MAX_SIZE - 1 and will reduce MEMCACHED_MAX_KEY by
- the value of your key. The prefix key is only applied to the primary key,
- not the master key. MEMCACHED_FAILURE will be returned if no key is set. In the case
- of a key which is too long MEMCACHED_BAD_KEY_PROVIDED will be returned.
+You can set a value which will be used to create a domain for your keys.
+The value specified here will be prefixed to each of your keys. The value can not be greater then MEMCACHED_PREFIX_KEY_MAX_SIZE - 1 and will reduce MEMCACHED_MAX_KEY by the value of your key. 
+
+The prefix key is only applied to the primary key, not the master key. MEMCACHED_FAILURE will be returned if no key is set. In the case of a key which is too long, MEMCACHED_BAD_KEY_PROVIDED will be returned.
  
- If you set a value with the value being NULL then the prefix key is disabled.
+If you set a value with the value being NULL then the prefix key is disabled.
 
 
 .. c:var:: MEMCACHED_CALLBACK_USER_DATA
  
- This allows you to store a pointer to a specifc piece of data. This can be
- retrieved from inside of memcached_fetch_execute(). Cloning a memcached_st
- will copy the pointer to the clone.
+This allows you to store a pointer to a specifc piece of data. This can be
+retrieved from inside of memcached_fetch_execute(). Cloning a memcached_st
+will copy the pointer to the clone.
  
 
 
 .. c:var:: MEMCACHED_CALLBACK_MALLOC_FUNCTION
  
- DEPRECATED: use memcached_set_memory_allocators instead.
+DEPRECATED: use memcached_set_memory_allocators instead.
  
 
 
 .. c:var:: MEMCACHED_CALLBACK_REALLOC_FUNCTION
  
- DEPRECATED: use memcached_set_memory_allocators instead.
+DEPRECATED: use memcached_set_memory_allocators instead.
  
 
 
 .. c:var:: MEMCACHED_CALLBACK_FREE_FUNCTION
  
- DEPRECATED: use memcached_set_memory_allocators instead.
+DEPRECATED: use memcached_set_memory_allocators instead.
  
 
 
 .. c:var:: MEMCACHED_CALLBACK_GET_FAILURE
  
- This function implements the read through cache behavior. On failure of retrieval this callback will be called. 
- You are responsible for populating the result object provided. This result object will then be stored in the server and
- returned to the calling process. You must clone the memcached_st in order to
- make use of it. The value will be stored only if you return
- MEMCACHED_SUCCESS or MEMCACHED_BUFFERED. Returning MEMCACHED_BUFFERED will
- cause the object to be buffered and not sent immediatly (if this is the default behavior based on your connection setup this will happen automatically).
+This function implements the read through cache behavior. On failure of retrieval this callback will be called. 
+
+You are responsible for populating the result object provided. This result object will then be stored in the server and returned to the calling process. 
+
+You must clone the memcached_st in order to
+make use of it. The value will be stored only if you return
+MEMCACHED_SUCCESS or MEMCACHED_BUFFERED. Returning MEMCACHED_BUFFERED will
+cause the object to be buffered and not sent immediatly (if this is the default behavior based on your connection setup this will happen automatically).
  
- The prototype for this is:
- memcached_return_t (\*memcached_trigger_key)(memcached_st \*ptr, char \*key, size_t key_length, memcached_result_st \*result);
+The prototype for this is:
+memcached_return_t (\*memcached_trigger_key)(memcached_st \*ptr, char \*key, size_t key_length, memcached_result_st \*result);
  
 
 
index 5afccee7f4e5f3fe349e9a4a9c8c7b4bdd77f4dd..f628f69e96a68e887f15bc4880c8961aacb15a8d 100644 (file)
@@ -25,8 +25,8 @@ memcached_delete_by_key() works the same, but it takes a master key to
 find the given value.
 
 Expiration works by placing the item into a delete queue, which means that
-it won't possible to retrieve it by the "get" command, but "add" and 
-"replace" command with this key will also fail (the "set" command will 
+it won't be possible to retrieve it by the "get" command. The "add" and 
+"replace" commands with this key will also fail (the "set" command will 
 succeed, however). After the time passes, the item is finally deleted from server memory.
 
 Please note the the Danga memcached server removed tests for expiration in
index 9b6e887e1ced9b70055c075c48d8ea95c61e70ce..a7dcb4fe54587ace8b1ab02ec2f563ac4ec2a51c 100644 (file)
@@ -42,12 +42,12 @@ DESCRIPTION
 -----------
 
 
-memcached_dump() is used to get a list of keys found  memcached(1) servers.
+memcached_dump() is used to get a list of keys found in memcached(1) servers.
 Because memcached(1) does not guarentee to dump all keys you can not assume
 you have fetched all keys from the server. The function takes an array
 of callbacks that it will use to execute on keys as they are found.
 
-Currently the binar protocol is not testsed.
+Currently the binary protocol is not testsed.
 
 
 ------
index f6813d45c493f865985033f0ce07fb5e87613b72..dcb931c77e9a31ee7bab44d592ed7814ad6c8c12 100644 (file)
@@ -65,7 +65,7 @@ memcached_return_t pointer to hold any error. The object will be returned
 upon success and NULL will be returned on failure. MEMCACHD_END is returned
 by the \*error value when all objects that have been found are returned.
 The final value upon MEMCACHED_END is null. Values returned by
-memcached_fetch() musted be free'ed by the caller. memcached_fetch() will
+memcached_fetch() must be freed by the caller. memcached_fetch() will
 be DEPRECATED in the near future, memcached_fetch_result() should be used
 instead.
 
@@ -89,7 +89,7 @@ memcached_mget_execute() and memcached_mget_execute_by_key() is
 similar to memcached_mget(), but it may trigger the supplied callbacks
 with result sets while sending out the queries. If you try to perform
 a really large multiget with memcached_mget() you may encounter a
-deadlock in the OS kernel (we fail to write data to the socket because
+deadlock in the OS kernel (it will fail to write data to the socket because
 the input buffer is full). memcached_mget_execute() solves this
 problem by processing some of the results before continuing sending
 out requests. Please note that this function is only available in the
@@ -100,9 +100,9 @@ as memcached_get() and memcached_mget(). The difference is that they take
 a master key that is used for determining which server an object was stored
 if key partitioning was used for storage.
 
-All of the above functions are not testsed when the \ ``MEMCACHED_BEHAVIOR_USE_UDP``\ 
+All of the above functions are not tested when the \ ``MEMCACHED_BEHAVIOR_USE_UDP``\ 
 has been set. Executing any of these functions with this behavior on will result in
-\ ``MEMCACHED_NOT_SUPPORTED``\  being returned or, for those functions which do not return
+\ ``MEMCACHED_NOT_SUPPORTED``\  being returned, or for those functions which do not return
 a \ ``memcached_return_t``\ , the error function parameter will be set to
 \ ``MEMCACHED_NOT_SUPPORTED``\ .
 
index 7f1cd10e49d5a79d4130fc5497589eaccd56acd9..40219079d9f4281b79c4fee0352cb199515c9c3a 100644 (file)
@@ -45,7 +45,7 @@ DESCRIPTION
 -----------
 
 
-libmemcached(3) allows you to specify your own memory allocators optimized
+libmemcached(3) allows you to specify your own memory allocators, optimized
 for your application. This enables libmemcached to be used inside of applications that have their own malloc implementation.
 
 memcached_set_memory_allocators() is used to set the memory allocators used
index 9243d6b478b8d25c6281763d216f53a3c316ce0b..e8aba51842a009d50d6c2b982c13036806e59223 100644 (file)
@@ -59,9 +59,9 @@ DESCRIPTION
 
 libmemcached(3) can optionally return a memcached_result_st which acts as a
 result object. The result objects have added benefits over the character
-pointer returns in that they are forward compatible with new return items
+pointer returns, in that they are forward compatible with new return items
 that future memcached servers may implement (the best current example of
-this is the CAS return item). The structures can also be reused which will
+this is the CAS return item). The structures can also be reused, which will
 save on calls to malloc(3). It is suggested that you use result objects over
 char \* return functions.
 
@@ -72,7 +72,7 @@ memcached_result_create() will either allocate memory for a
 memcached_result_st or will initialize a structure passed to it.
 
 memcached_result_free() will deallocate any memory attached to the
-structure. If the structure was also alloacted, it will deallocate it.
+structure. If the structure was also allocated, it will deallocate it.
 
 memcached_result_key_value() returns the key value associated with the
 current result object.
@@ -91,7 +91,7 @@ current result object.
 
 memcached_result_cas() returns the cas associated with the
 current result object. This value will only be available if the server
-testss it.
+tests it.
 
 memcached_result_set_value() takes a byte array and a size and sets
 the result to this value. This function is used for trigger responses.
index 30aa72ca7ed2f72e48d6f87fa90816dda5b5efb8..bf0251dd9415e70542bd5474e57408e8fe917921 100644 (file)
@@ -44,7 +44,7 @@ libsasl to perform SASL authentication.
 Please note that SASL requires the memcached binary protocol, and you have
 to specify the callbacks before you connect to the server.
 
-memcached_set_sasl_auth_data() is a helper function for you defining
+memcached_set_sasl_auth_data() is a helper function defining
 the basic functionality for you, but it will store the username and password
 in memory. If you choose to use this method you have to call
 memcached_destroy_sasl_auth_data before calling memcached_free to avoid
index c2f08b3c4f527f19cf1eb23ed9c524266a768a89..4cdbd99440a706ebed6a76ffa01f47c01fecfb0a 100644 (file)
@@ -49,8 +49,8 @@ DESCRIPTION
 memcached_set(), memcached_add(), and memcached_replace() are all used to
 store information on the server. All methods take a key, and its length to
 store the object. Keys are currently limited to 250 characters by the
-memcached(1) server. You must also supply a value and a length. Optionally you
-may tests an expiration time for the object and a 16 byte value (it is
+memcached(1) server. You must supply both a value and a length. Optionally you
+may test an expiration time for the object and a 16 byte value (it is
 meant to be used as a bitmap).
 
 memcached_set() will write an object to the server. If an object already
@@ -87,12 +87,12 @@ If you are looking for performance, memcached_set() with non-blocking IO is
 the fastest way to store data on the server.
 
 All of the above functions are testsed with the \ ``MEMCACHED_BEHAVIOR_USE_UDP``\ 
-behavior enabled. But when using these operations with this behavior on, there 
+behavior enabled. However, when using these operations with this behavior on, there 
 are limits to the size of the payload being sent to the server.  The reason for 
-these limits is that the Memcahed Server does not allow multi-datagram requests
+these limits is that the Memcached Server does not allow multi-datagram requests
 and the current server implementation sets a datagram size to 1400 bytes. Due 
 to protocol overhead, the actual limit of the user supplied data is less than 
-1400 bytes and depends on the protocol in use as well as the operation being 
+1400 bytes and depends on the protocol in use as, well as the operation being 
 executed. When running with the binary protocol, \ `` MEMCACHED_BEHAVIOR_BINARY_PROTOCOL``\ , 
 the size of the key,value, flags and expiry combined may not exceed 1368 bytes. 
 When running with the ASCII protocol, the exact limit fluctuates depending on 
index 01403a16480141e17a352ef322e41dd8e09c7c6e..a670c78f8e3280c475dd4c9b405675b43e03d559 100644 (file)
@@ -39,7 +39,7 @@ DESCRIPTION
 
 
 memcached_lib_version() is used to return a simple version string representing
-the libmemcached version (version of the client library, not server)
+the libmemcached version (client library version, not server version)
 
 memcached_version() is used to set the major, minor, and micro versions of each
 memcached server being used by the memcached_st connection structure. It returns the 
index a8ac4e435ebf7832fa4a0956e6d4b8199d85b769..b9d2f5a80424363bd56e7f238be97e921a102163 100644 (file)
@@ -16,29 +16,29 @@ SYNOPSIS
 
 .. option:: -h hostname
  
- Specify the hostname to connect to. The default is \ *localhost*\ 
+Specify the hostname to connect to. The default is \ *localhost*\ 
 
 .. option:: -p port
  
- Specify the port number to connect to. The default is \ *11211*\ 
+Specify the port number to connect to. The default is \ *11211*\ 
  
 
 
 .. option:: -c
  
- Generate a coredump when it detects an error from the server.
+Generate a coredump when it detects an error from the server.
  
 
 
 .. option:: -v
  
-  Print out the comparison when it detects an error from the server.
+Print out the comparison when it detects an error from the server.
  
 
 
 .. option:: -t n
  
- Set the timeout from an IO operation to/from the server to \ *n*\  seconds.
+Set the timeout from an IO operation to/from the server to \ *n*\  seconds.
  
 -----------
 DESCRIPTION
index 6e12bedd4410f25c6482b96302504f64fa1375e1..7e620ccaf10fc3e5a6595311ca9cfd19060a0700 100644 (file)
@@ -26,11 +26,10 @@ DESCRIPTION
 It is similar to the standard UNIX cp(1) command.
 
 The key names will be the names of the files,
-without any directory path part.
+without any directory path.
 
 You can specify servers via the \ **--servers**\  option or via the
-environment variable \ ``MEMCACHED_SERVERS``\ . If you specify neither of
-these, the final value in the command line list is the name of a
+environment variable \ ``MEMCACHED_SERVERS``\. If you do not specify either these, the final value in the command line list is the name of a
 server(s).
 
 For a full list of operations run the tool with the \ **--help**\  option.
index 74e1254f17efc1518987099efc924399fd9ab9d9..fbdb8c1c163df162f1f17368af9279f9f1f5bdce 100644 (file)
@@ -21,7 +21,7 @@ DESCRIPTION
 -----------
 
 
-\ **memdump**\  currently dumps a list of "keys" from all servers that 
+\ **memdump**\  dumps a list of "keys" from all servers that 
 it is told to fetch from. Because memcached does not guarentee to
 provide all keys it is not possible to get a complete "dump".
 
index 7e2d967f4e59a5a95fa0349155be0ab46bfec82f..7501c07108422e7513311dde29b5f9b2411bc96f 100644 (file)
@@ -3,7 +3,7 @@ memerror - translate an error code to a string
 ==============================================
 
 
-Translate a memcached error code to a string
+Translates a memcached error code into a string
 
 
 --------
@@ -21,7 +21,7 @@ DESCRIPTION
 -----------
 
 
-\ **memerror**\  translate an error code from libmemcached(3) to  a human
+\ **memerror**\  translate an error code from libmemcached(3) into a human
 readable string.
 
 For a full list of operations run the tool with the \ **--help**\  option.
index 6cb0472809ed6912e3e5dbfa604654dba25223eb..e02969bd2106e26127bc2b413669ddbf7ba537cb 100644 (file)
@@ -22,7 +22,7 @@ DESCRIPTION
 
 
 \ **memflush**\  resets the contents of memcached(1) servers.
-This means all data in these servers will be deleted.
+This means that all data in the specified servers will be deleted.
 
 You can specify servers via the \ **--servers**\  option or via the
 environment variable \ ``MEMCACHED_SERVERS``\ .
index cde4ace733c8f2972a6116639289bda1be7303a8..1996b99f779b4cf4f6b03622994244bfb32f9963 100644 (file)
@@ -20,12 +20,9 @@ DESCRIPTION
 
 
 \ **memslap**\  is a load generation and benchmark tool for memcached(1)
-servers. It generates configurable workload such as threads, concurrencies, connections,
-run time, overwrite, miss rate, key size, value size, get/set proportion,
-expected throughput, and so on. 
+servers. It generates configurable workload such as threads, concurrencies, connections, run time, overwrite, miss rate, key size, value size, get/set proportion, expected throughput, and so on. 
 
-You can specify servers via the \ **--servers**\  option or via the
-environment variable \ ``MEMCACHED_SERVERS``\ .
+You can specify servers via the \ **--servers**\  option or via the environment variable \ ``MEMCACHED_SERVERS``\ .
 
 
 --------