Transfering hashes (and arrays and compound structures), via Storable's freeze() & thaw() works nicely and reasonably quickly, but there are a few things to be aware of.

  1. Remember to binmode your sockets if that's not your local default.
  2. Use a binary length prefix (not a trailing delimiter), to indicate the size of the binary transmission.
  3. Use read rather than <$sock> for reading binary messages.
  4. If your protocol requires the mixing of text and binary messages, pay careful attention to delimiters.

A silly self-contained client-server sample:

#! perl -slw use strict; use threads; use IO::Socket; use Storable qw[ freeze thaw ]; use Data::Dump qw[ pp ]; my %hash; @hash{ 'a'..'z' } = 1 .. 26; my $lsn = new IO::Socket::INET( Listen => 1, LocalPort => '12345' ) or die "Failed to open listening port: $!\n"; async{ while( my $c = $lsn->accept ) { binmode $c; print "Connect from $c"; while( my $cmd = <$c> ) { print "Got '$cmd'"; last if $cmd =~ m[^quit]; printf $c "%s", pack "N/a*", freeze \%hash; } print "Got quit from $c"; close $c; } }->detach; sleep 2; my $s = new IO::Socket::INET( 'localhost:12345' ) or die "Failed to connect to server: $!"; binmode $s; for ( 1 .. 1+rand 100 ) { print $s 'givemeit'; print 'Sent givemeit'; my $len; read( $s, $len, 4 ) or die "Read failed: $!"; $len = unpack 'N', $len; print "read length: $len"; my $hashStr; read( $s, $hashStr, $len ) or die "Read failed: $!"; print "Read hashstr length: ", length $hashStr; my %hash = %{ thaw $hashStr }; pp \%hash; } print $s 'quit'; close $s;

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"I'd rather go naked than blow up my ass"

In reply to Re: Transfer a hash using client and server in perl by BrowserUk
in thread Transfer a hash using client and server in perl by abubacker

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.