Subject: | Tieing multi-level hashes or arrays can only see top level |
When using tie with Win32-MMF Shareable on a Hash or Array. The child thread/process can't read anything farther then the top level of the hash/array.
Example:
%Hash = (
one => '1',
two => { 'one' => '1', two => '2', },
);
will be read as
%Hash = (
one => '1',
two => {},
);
Same goes for multi-dimensional arrays.
It seems it does not pick up refrences farther then the top level.