|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-07-03 04:19 UTC] jason at cubedthree dot com
[2008-07-03 07:36 UTC] mikael at synd dot info
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 16 12:00:01 2025 UTC |
Description: ------------ I'm not sure if this is the intended mode of operation, but when switching from ascii to binary protocol in 3.0.1, I noticed that memcache no longer uses persistent connections. Switching back to ascii protocol verifies this. I'm not using sessions through memcache (if that matters). Reproduce code: --------------- --- cache_lib.php --- $CACHE_HANDLE = new Memcache; $CACHE_HANDLE->addServer('10.8.147.2', 11211); $CACHE_HANDLE->addServer('10.8.147.3', 11211); --- memcache.ini --- ;memcache.protocol=ascii memcache.protocol=binary ---