添加多个服务器后 PHP Memcache 不工作
我正在 PHP 中创建一些备份 CLI 脚本,它利用 Memcache 类,但我遇到了奇怪的问题...
当我在 Memcache 上附加多个服务器时,get() 方法总是返回 false,即使条目存在,但当我仅附加时一台服务器,其中放置该条目,返回其值...
不起作用:
$mc = new Memcache();
$mc->addServer('localhost', 11211);
$mc->addServer('localhost', 11212);
$mc->addServer('localhost', 11213);
var_dump($mc->get('someKey')); //bool(false)
但这有效:
$mc = new Memcache();
$mc->addServer('localhost', 11211);
var_dump($mc->get('someKey')); //Outputs actual value
我重复一遍,我从命令行运行此脚本。在所有三个服务器都添加到连接池中的情况下,memcache 中的条目也是使用 Memcache 类创建的。唯一的区别是缓存条目的保存是使用浏览器通过 HTTP 请求触发的。
有什么想法吗?
I'm creating some backup CLI script in PHP, which utilize Memcache class, but I have strange problem...
When I attach multiple servers on Memcache, get() method always return false, even if entry exists, but when I attach only one server, in which that entry is placed, its value is returned...
Does not work:
$mc = new Memcache();
$mc->addServer('localhost', 11211);
$mc->addServer('localhost', 11212);
$mc->addServer('localhost', 11213);
var_dump($mc->get('someKey')); //bool(false)
But this works:
$mc = new Memcache();
$mc->addServer('localhost', 11211);
var_dump($mc->get('someKey')); //Outputs actual value
I repeat, I run this script from command line. Entries in memcache were created using Memcache class, too, in situation where all three servers were added into the connection pool. Only difference is that saving of cache entries was triggered through HTTP request, using browser.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试运行此代码
此外,您应该使用与
get()
时完全相同的服务器池来set()
密钥。Try to run this code
Also, you should
set()
your key with EXACTLY same server pool as when youget()
it.