添加多个服务器后 PHP Memcache 不工作

发布于 2024-11-02 05:32:31 字数 658 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转角预定愛 2024-11-09 05:32:31

尝试运行此代码

<?php
error_reporting(E_ALL || E_NOTICE);

$mc = new Memcache();
$mc->addServer('localhost', 11211);
$mc->addServer('localhost', 11212);
$mc->addServer('localhost', 11213);

var_dump($mc->getExtendedStats());
var_dump($mc->get('someKey')); //bool(false)
?>

此外,您应该使用与 get() 时完全相同的服务器池来 set() 密钥。

Try to run this code

<?php
error_reporting(E_ALL || E_NOTICE);

$mc = new Memcache();
$mc->addServer('localhost', 11211);
$mc->addServer('localhost', 11212);
$mc->addServer('localhost', 11213);

var_dump($mc->getExtendedStats());
var_dump($mc->get('someKey')); //bool(false)
?>

Also, you should set() your key with EXACTLY same server pool as when you get() it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文