|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-02-13 17:55 UTC] tony2001 at phpclub dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 21:00:01 2025 UTC |
Description: ------------ For some reason an attempt to save anything after storing a non-empty array with enough long key will fail. After the failure, any operation with the value that failed to be stored will fail till I restart the memcache daemon. Reproduce code: --------------- $memcache_obj = new Memcache; $memcache_obj->connect('10.1.1.10', 11211); $a = $memcache_obj->set('some_not_short_string',array('not_empty_array')); $a = $memcache_obj->set('a',1); var_dump($a); Expected result: ---------------- bool(true) Actual result: -------------- bool(false)