in reply to Threads, forks and stuff?
2) Just using threads has no impact on your ability to create multi-dimensional data structures. Sharing those structures between threads may be a little complex. See threads::shared. Using strict may impact your ability to create multi-dimensional datastructures, but usually, that means you're doing it wrongtm:
use strict; use threads; my $structure = [ 'a', 'b', 'c', { some => 'hash' }, [ 'some', 'array' + ]];
|
|---|