|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-05-22 19:04 UTC] info at theindustry dot se
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 19:00:02 2025 UTC |
Description: ------------ I have followed the PHP documention in order to setup my memcached server cluster in my PHP application according to the instructions. When a server is being added which obviously shoudlnt work, the failurecallback-function is never being thrown. Memcache PECL version2.2. @ $Revision: 1.114 $ is used. Reproduce code: --------------- function failureCallback($host, $port) { print "memcache '$host:$port' failed"; } $this->memcache = new Memcache; $this->memcache->addServer('Offlineserver', '11211', FALSE, 50, 10, 10, TRUE, 'failureCallback' ); Expected result: ---------------- Memcache Offlineserver:11211 failed Actual result: -------------- Nothing happens