5
Neden bir dosyayı, belleğe okumaktan ve iki kez hesaplama yapmaktan iki kat daha hızlı yineliyor?
Aşağıdakileri karşılaştırıyorum tail -n 1000000 stdout.log | grep -c '"success": true' tail -n 1000000 stdout.log | grep -c '"success": false' Takip ederek log=$(tail -n 1000000 stdout.log) echo "$log" | grep -c '"success": true' echo "$log" | grep -c '"success": false' ve şaşırtıcı bir şekilde ikinci, birinciden neredeyse 3 kat daha …
26
bash
performance
io