0
我有這樣的代碼:PHP的Memcached的OPT_PREFIX_KEY沒有被應用
$connection = new memcached();
$connection->setOption(memcached::OPT_PREFIX_KEY, 'server1:');
$connection->set("foo", "hello");
當我運行此代碼,然後拿在phpmemcachedadmin一看,我看關鍵foo
,而不是server1:foo
。
我在這裏錯過了什麼嗎?