Concurrency Functions time for i in `grep server /etc/hosts | awk '{print $1}'`; do (ssh $i "echo 123; sleep 1; echo 456" &); done real 0m0.063s user 0m0.016s sys 0m0.004s Concurrency capabilities of xargs time grep server /etc/hosts | awk '{print $1}' | xargs -P 24 -I {} ssh {} "echo 123; sleep 1; echo 456" real 0m3.747s user 0m1.136s sys 0m0.112s Concurrency is actually very simple. It does not require dozens of lines of golang or python code, nor does it require installation environment, compilation and other tedious steps. Just return to basics. Summarize You may also be interested in:
|
<<: Native js implements custom scroll bar component
>>: Ubuntu 15.04 opens mysql remote port 3306
Querying the database SELECT * FROM `student` Que...
In enterprises, database high availability has al...
Table of contents Horizontal bar chart Dynamicall...
Find mirror We can search for images from the Doc...
This article introduces and shares the responsive...
I rewrote my personal website recently. I bought ...
1. Introduction The difference between row locks ...
In more and more websites, the use of XHTML is rep...
I am currently learning about Redis and container...
I recently encountered a problem when doing IM, a...
Table of contents 1. Cancel duplicate requests 2....
Although Microsoft has done a lot of research and ...
Effect picture: Implementation code: <template...
The examples in this article run on MySQL 5.0 and...
Table of contents Overview 1. Download via URL 2....