|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-04-13 01:30 UTC] marcus at onlab dot org
[2009-07-20 05:47 UTC] andreas dot pankratz at s dot square-group dot de
[2009-09-03 18:24 UTC] noodles at planetslackers dot com
[2009-12-04 15:55 UTC] mvenezia at gmail dot com
[2010-03-25 05:10 UTC] pierre dot php at gmail dot com
[2013-10-10 06:48 UTC] pajoye@php.net
[2013-10-10 06:48 UTC] pajoye@php.net
-Status: Assigned
+Status: Closed
[2015-01-08 08:53 UTC] anthonyryan1 at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 08:00:02 2025 UTC |
Description: ------------ I get the following notice with version 3.0.4 and memcached version 1.3.2: Notice: MemcachePool::get(): Server 10.1.0.1 (tcp 11211, udp 0) failed with: Network timeout (0) in /blade/site/framework/modules/scaler.class on line 83 Unsure if it is a memcache Daemon or client issue. Reproduce code: --------------- //- binary mode not working -------- ini_set('memcache.protocol', 'binary'); $m = new MemcachePool; $m->connect('10.1.0.1'); $result = $m->get('CLUSTERINFO'); /* Produces: Notice: MemcachePool::get(): Server 10.1.0.1 (tcp 11211, udp 0) failed with: Network timeout (0) in /blade/site/framework/modules/scaler.class on line 83 $result is false */ //--asci mode working ---------------- ini_set('memcache.protocol', 'ascii'); $m = new MemcachePool; $m->connect('10.1.0.1'); $result = $m->get('CLUSTERINFO'); /* $result contains the valid data */ Expected result: ---------------- Get the value from the server in binary without fallback to ascii