diff --git a/reference/memcached/constants.xml b/reference/memcached/constants.xml index fbfdd8202e..2e23c946e3 100644 --- a/reference/memcached/constants.xml +++ b/reference/memcached/constants.xml @@ -1,5 +1,5 @@ - + &reftitle.constants; @@ -146,91 +146,121 @@ Memcached::OPT_BUFFER_WRITES - Description here... + Enables or disables buffered I/O. Enabling buffered I/O causes + storage commands to "buffer" instead of being sent. Any action that + retrieves data causes this buffer to be sent to the remote connection. + Quitting the connection or closing down the connection will also cause + the buffered data to be pushed to the remote connection. + Type: boolean, default: &false;. Memcached::OPT_BINARY_PROTOCOL - Description here... + Enable the use of the binary protocol. Please note that you cannot + toggle this option on an open connection. + Type: boolean, default: &false;. Memcached::OPT_NO_BLOCK - Description here... + Enables or disables asynchronous I/O. This is the fastest transport + available for storage functions. + Type: boolean, default: &false;. Memcached::OPT_TCP_NODELAY - Description here... + Enables or disables the no-delay feature for connecting sockets (may + be faster in some environments). + Type: boolean, default: &false;. Memcached::OPT_SOCKET_SEND_SIZE - Description here... + The maximum socket send buffer in bytes. + Type: integer, default: varies by platform/kernel + configuration. Memcached::OPT_SOCKET_RECV_SIZE - Description here... + The maximum socket receive buffer in bytes. + Type: integer, default: varies by platform/kernel + configuration. Memcached::OPT_CONNECT_TIMEOUT - Description here... + In non-blocking mode this set the value of the timeout during socket + connection, in milliseconds. + Type: integer, default: 1000. Memcached::OPT_RETRY_TIMEOUT - Description here... + The amount of time, in seconds, to wait until retrying a failed + connection attempt. + Type: integer, default: 0. Memcached::OPT_SEND_TIMEOUT - Description here... + Socket sending timeout, in microseconds. In cases where you cannot + use non-blocking I/O this will allow you to still have timeouts on the + sending of data. + Type: integer, default: 0. Memcached::OPT_RECV_TIMEOUT - Description here... + Socket reading timeout, in microseconds. In cases where you cannot + use non-blocking I/O this will allow you to still have timeouts on the + reading of data. + Type: integer, default: 0. Memcached::OPT_POLL_TIMEOUT - Description here... + Timeout for connection polling, in milliseconds. + Type: integer, default: 1000. Memcached::OPT_CACHE_LOOKUPS - Description here... + Enables or disables caching of DNS lookups. + Type: boolean, default: &false;. Memcached::OPT_SERVER_FAILURE_LIMIT - Description here... + Specifies the failure limit for server connection attempts. The + server will be removed after this many continuous connection + failures. + Type: integer, default: 0.