Thanks,
What happens if
use vars qw(%list ....)
%list being a hash of sockets like
%list{listName}->socketObject;
Then I use the sockets in subroutines like
sub sendToList {
send stuff to all $list{listName}->socketObjects;
...
}
Would that be okay with no memory leaks, or would it hold on to the socketObjects even after delete $list{listName} ?
Would it be the same for
http_request (
...
,sub {
send stuff to all $list{listName}->socketObjects;
});
Closure stuff seems difficult for me to grasp :(
Again thanks for your reply.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.