พูดคุย:Lightweight Web Load Testing Tool with Curl and Ruby
You can leave your comments or bug reports here. (Just go ahead and edit (แก้ไข)) Thank you. Jittat 08:39, 2 เมษายน 2008 (ICT)
Better write these topic in http://programming.wikia.com/ ? (See http://th.lug.wikia.com/wiki/Why_Wikia%3F for more reasons) --Ans 23:41, 26 กรกฎาคม 2008 (ICT)
perl + wget + fork =
ปกติ ผมใช้ perl + wget แล้วก็ forkๆๆๆ และจับเวลา.
อันแรกเป็นแบบ 100 concurrent x 1 request = 100 requests
$ time -p perl -e 'for(1..100) { fork() or last; } system("wget -q -O/dev/null http://xxxxx/xxxx.html")'
อันนี้ 5 concurrent x 20 requests = 100 requests
$ time -p perl -e 'for(1..20) { push(@url, "http://xxxxx/xxxx.html"); } for(1..5) { fork() or last; } system("wget", "-q", "-O/dev/null", @url);'
ไม่แน่ใจว่า เหมือนหรือต่างกับ code อันที่ใช้ ruby นี้อย่างไร? (/me อ่าน code ruby ไม่รู้เรื่อง) --Ans 23:45, 26 กรกฎาคม 2008 (ICT)