in reply to Re^3: Memcached and arrays?
in thread Memcached and arrays?
Ignore!
The point is that if you only store an array reference, and then retreive that reference in the same process, then the reference will still point to the array, and you'll be able to access its contents through it.
But if you stored the reference in one process, and then retrieved it in another, then that reference will not point to anything in the new process and if you attempt to dereference it, you'll probably crash perl.
|
|---|