in reply to Re: DBM::Deep Can't store something that is tied
in thread DBM::Deep Can't store something that is tied

I'm just trying to modify an array list (tied to DBM::Deep itself) and delete one of the entries.

I also tried doing the following thing:
$db->delete(1111); splice(splice(@{$bucketobj->{referrerindex}}, 1, 1); $db->{1111} = $bucketobj; # Modified object
Even this doesn't work