Skip to content
Snippets Groups Projects
Commit 17af773f authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Remove buffered writes from memcache example

They seem to cause trouble, also inconsistent behaviour between versions of the memcached extension.
parent db60d633
Branches
Tags
No related merge requests found
...@@ -675,7 +675,6 @@ $config = [ ...@@ -675,7 +675,6 @@ $config = [
* \Memcached::OPT_NO_BLOCK => true, * \Memcached::OPT_NO_BLOCK => true,
* \Memcached::OPT_TCP_NODELAY => true, * \Memcached::OPT_TCP_NODELAY => true,
* \Memcached::OPT_LIBKETAMA_COMPATIBLE => true, * \Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
* \Memcached::OPT_BUFFER_WRITES => true,
* ], * ],
* ['hostname' => '127.0.0.1', 'port' => 11211], * ['hostname' => '127.0.0.1', 'port' => 11211],
* ['hostname' => '127.0.0.2', 'port' => 11211], * ['hostname' => '127.0.0.2', 'port' => 11211],
...@@ -687,7 +686,6 @@ $config = [ ...@@ -687,7 +686,6 @@ $config = [
* \Memcached::OPT_NO_BLOCK => true, * \Memcached::OPT_NO_BLOCK => true,
* \Memcached::OPT_TCP_NODELAY => true, * \Memcached::OPT_TCP_NODELAY => true,
* \Memcached::OPT_LIBKETAMA_COMPATIBLE => true, * \Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
* \Memcached::OPT_BUFFER_WRITES => true,
* ], * ],
* ['hostname' => '127.0.0.3', 'port' => 11211], * ['hostname' => '127.0.0.3', 'port' => 11211],
* ['hostname' => '127.0.0.4', 'port' => 11211], * ['hostname' => '127.0.0.4', 'port' => 11211],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment