in reply to Re: Perl Storable problem (i Think)
in thread Perl Storable problem (i Think)
Sorry for the late reply had to step away. Thank you both for replying... I will make sure to check the return value going forward as Dave suggested. I was able to figure this issue out. It was not an issue with storable, more of an issue of bad programmer. It was sending the data, problem was I was not receiving it all.my client code was
$client_socket->recv($recieved_data,1024);
I bumped up 1024 to a larger value and that fixed the issue. Thanks again for putting up with me. I appreciate the help.