in reply to Re^2: Storable freeze/thaw losing object methods
in thread Storable freeze/thaw losing object methods
How can I check the size of an object?
Check the size of the transmission:
my $toSend = freeze(\$command ); print length $toSend; $self->{channel}->send( $toSend ); ... my $received = $self->{channel}->receive_nb(); print length $received; my $command = thaw( $received );
But ikegami's probably hit the nail on the head. Have you used the class at the receiver?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Storable freeze/thaw losing object methods
by unix_hacker_beard (Novice) on Nov 22, 2011 at 21:26 UTC |