Scroll to navigation

Net::OpenSSH::ConnectionCache(3pm) User Contributed Perl Documentation Net::OpenSSH::ConnectionCache(3pm)
 

NAME

Net::OpenSSH::ConnectionCache - cache and reuse SSH connections transparently

SYNOPSIS

  use Net::OpenSSH;
  use Net::OpenSSH::ConnectionCache;
  for (1..10) {
    my $ssh = Net::OpenSSH->new($host);
    $ssh->system("$cmd $_");
  }

DESCRIPTION

This module installs a $Net::OpenSSH::FACTORY hook implementing a SSH connection caching scheme.
$Net::OpenSSH::ConnectionCache::MAX_SIZE controls the cache size. Once as many connections are allocated, the module will try to free any of them before allocating a new one.

COPYRIGHT AND LICENSE

Copyright (C) 2011 by Salvador Fandin~o (sfandino@yahoo.com)
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.
2012-02-22 perl v5.18.2