I'm trying to open multiple connections (various devices) to run a command and get the output. The problem is that i have to run them "all at once"/parallel. If i wait for one result and then to run the other one it takes way too long and with a large number of devices that can go very bad.
I'm also using curl which I know that there is curl_multi and I was wondering if there was something similar with SSH for php.
I'm using Net_SSH2 for now.