Help for this page

Select Code to Download


  1. or download this
    Out of memory!
    Callback called exit at C:/perl/lib/HTML/Element.pm line 234.
    ...
        19 running and unjoined
        0 finished and unjoined
        2 running and detached
    
  2. or download this
    use threads ('stack_size' => 4096);
    use threads::shared;
    ...
    my $mysql_thread = threads->create('send_parts_to_db', $parts));
    $mysql_thread->detach;
    undef $mysql_thread; #as suggested by someone on perlmonks