php – 无法从memcached程序保存服务器上的数据

嗨,我想知道为什么我不能存储多维(数组大小超过1000)

$memcache = new Memcache;

$memcache->connect('localhost', 11211) or die ("Could not connect");

以上s正常工作……

下面有一个错误…

   $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

谢谢并提前

最佳答案 您尝试存储的阵列可能太大了. Memcache对单个项目的大小有限制.每个项目的最大大小为1,048,576字节或1MB.

这是关于这个问题的另一个主题……

Can you store a PHP Array in Memcache?

点赞