Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 4 行脚本中有一个错误,我找不到。`
$m = new Memcached(); var_dump($m->addServer('localhost', 11211)); var_dump( $m->getResultCode()); var_dump($m->set("aaaa","bbb"));`
输出:
bool(true) int(0) bool(false)
get 和 replace 也返回 false。
我的 memcached 服务器的错误或配置错误?