in reply to Storable alternatives
sub my_serialize { my $obj = shift; if (check_some_condition($obj)) { return freeze replace($obj) } return freeze $obj; # serialize $obj as is }; my $data = my_serialize($tree)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Storable alternatives
by salva (Canon) on May 17, 2013 at 13:41 UTC | |
by vsespb (Chaplain) on May 17, 2013 at 13:52 UTC | |
by salva (Canon) on May 17, 2013 at 13:55 UTC |