in reply to Recursive tied hash crap out
That link you gave results in "permission denied".
Be sure not to access a tied variable from inside of a FETCH routine. To work around that bug, instead of:
usesub FETCH { # ... $val= $refToTiedHash->{$key}; # ... }
for example. - tye (but my friends call me "Tye")sub FETCH { # ... $val= tied(%$refToTiedHash)->FETCH($key); # ... }
|
|---|