curlと127.0.0.1とlocalhost curlでレスポンスタイムを取得して、その値を監視していたのだけど ホストの指定を「127.0.0.1」にするか「localhost」にするかで結果がだいぶ違う。 どのくらい違うかというとこのくらい。 $ curl -skL -o /dev/null -w "%{time_total}\n" http://127.0.0.1/test.html 0.001 $ curl -skL -o /dev/null -w "%{time_total}\n" http://localhost/test.html 0.152 $ uname -a Linux web01 3.10.0-123.8.1.el7.x86_64 #1 SMP Mon Sep 22 19:06:58 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux