Can you store a PHP Array in Memcache?
问题 Can you store an Array in Memcache? I would like to store; A user ID number A user's photo URL A users name Together as an array, someone told me you could and then someone told me you couldn't Which is it? 回答1: Yes. Memcache::set('someKey', array( 'user_id' => 1, 'url' => 'http://', 'name' => 'Dave' )); Please see the documentation for very detailed examples. 回答2: max storage size of an item in memcache is 1,048,576 Bytes (1MB), serializing an array does take a bit of space. if you were to