php memcached 池中正在使用哪个服务器
我正在使用 php memcached(memcached 节点池,而不仅仅是 1 个服务器)。
我可以在 memcached 中设置大部分内容,但有一个特定的键无法设置。所以我想找出哪个节点有问题。有什么方法可以知道哪个节点正在设置特定的键?
谢谢。
I'm using php memcached (pool of memcached nodes, not just 1 server).
Most of the stuffs I can set in memcached, but there's one particular key that fails to set. So I'm trying to find out which node is the problematic one. Is there any way to know which node is a particular key being set?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在
Memcache::addServer
中使用$failure_callback
https://www.php.net/manual/en/memcache.addserver。 php 或查看
Memcache::getExtendedStats
https://www.php.net/manual/en/memcache.getextendstats.phptry to use
$failure_callback
inMemcache::addServer
https://www.php.net/manual/en/memcache.addserver.php or look at
Memcache::getExtendedStats
https://www.php.net/manual/en/memcache.getextendedstats.php