diff --git a/docs/.DS_Store b/docs/.DS_Store deleted file mode 100644 index fe28e51..0000000 Binary files a/docs/.DS_Store and /dev/null differ diff --git a/docs/getting_started.rst b/docs/getting_started.rst index c5f5b2e..6e1b8d7 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -73,8 +73,11 @@ same key. Best Practices --------------- - - Always set the connect_timeout and timeout arguments in the constructor to - avoid blocking your process when memcached is slow. + - Always set the `connect_timeout` and `timeout` arguments in the + :py:class:`pymemcache.client.base.Client` constructor to avoid blocking + your process when memcached is slow. You might also want to enable the + `no_delay` option, which sets the TCP_NODELAY flag on the connection's + socket. - Use the "noreply" flag for a significant performance boost. The "noreply" flag is enabled by default for "set", "add", "replace", "append", "prepend", and "delete". It is disabled by default for "cas", "incr" and "decr". It