From 137e212f09afdeb585682e3ef2db5d135ea15260 Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Mon, 9 Feb 2009 20:15:52 +0000 Subject: [PATCH] Finish documenting constants. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@275449 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/memcached/constants.xml | 48 +++++++++++++++++-------------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/reference/memcached/constants.xml b/reference/memcached/constants.xml index 580472dedf..6877651aeb 100644 --- a/reference/memcached/constants.xml +++ b/reference/memcached/constants.xml @@ -1,5 +1,5 @@ - + &reftitle.constants; @@ -272,147 +272,151 @@ Memcached::RES_SUCCESS - Description here... + The operation was successful. Memcached::RES_FAILURE - Description here... + The operation failed in some fashion. Memcached::RES_HOST_LOOKUP_FAILURE - Description here... + DNS lookup failed. Memcached::RES_UNKNOWN_READ_FAILURE - Description here... + Failed to read network data. Memcached::RES_PROTOCOL_ERROR - Description here... + Bad command in memcached protocol. Memcached::RES_CLIENT_ERROR - Description here... + Error on the client side. Memcached::RES_SERVER_ERROR - Description here... + Error on the server side. Memcached::RES_WRITE_FAILURE - Description here... + Failed to write network data. Memcached::RES_DATA_EXISTS - Description here... + Failed to do compare-and-swap: item you are trying to store has been + modified since you last fetched it. Memcached::RES_NOTSTORED - Description here... + Item was not stored: but not because of an error. This normally + means that either the condition for an "add" or a "replace" command + wasn't met, or that the item is in a delete queue. Memcached::RES_NOTFOUND - Description here... + Item with this key was not found (with "get" operation or "cas" + operations). Memcached::RES_PARTIAL_READ - Description here... + Partial network data read error. Memcached::RES_SOME_ERRORS - Description here... + Some errors occurred during multi-get. Memcached::RES_NO_SERVERS - Description here... + Server list is empty. Memcached::RES_END - Description here... + End of result set. Memcached::RES_ERRNO - Description here... + System error. Memcached::RES_BUFFERED - Description here... + The operation was buffered. Memcached::RES_TIMEOUT - Description here... + The operation timed out. Memcached::RES_BAD_KEY_PROVIDED - Description here... + Bad key. Memcached::RES_CONNECTION_SOCKET_CREATE_FAILURE - Description here... + Failed to create network socket. Memcached::RES_PAYLOAD_FAILURE - Description here... + Payload failre: could not compress/decompress or serialize/unserialize the value.