hi, I want to know why I can not store multidimensional (array size more than 1000)
$memcache = new Memcache; $memcache->connect('localhost', 11211) or die ("Could not connect");
the above instructions work correctly ...
below have an error ...
$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
thanks and go
source share