【发布时间】:2010-05-13 14:20:03
【问题描述】:
嗨,我想知道为什么我不能存储多维(数组大小超过 1000)
$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");
以上工作正常...
以下有错误...
$memcache->set('key', $sear, false, 60) or die ("Failed to save data at the server");
if the $sear is string or object array then no problem for store data at the server..
but i store multi dimensional array in memcached,,i will get the error is
Failed to save data at the server
感谢并提前
【问题讨论】: