1

/ etc/hostsファイルでいくつかの人気のある広告ターゲティングドメインをブロックします。例えば:

127.0.0.1 ad.doubleclick.net
127.0.0.1 a.adroll.net

ただし、サイトがこれらのサーバーへのブロック呼び出しを<head>Webドキュメントに配置することがあり、Chromeはリクエストがタイムアウトするまでページの残りの部分を描画しません。これには時間がかかる場合があります。

これらのリクエストをタイムアウトするプロセスをスピードアップする方法はありますか?

4

1 に答える 1

1

もちろん、ホストを介してリクエストを127.0.0.1にリダイレクトすることは、ローカルホストへのリクエストを意味します。そこでWebサーバーを実行している場合は、これらすべてのリクエストをキャッチするため、処理時間がかかる可能性があります。

If you have no server running on localhost and a firewall, that drops requests to port 80, things might become even uglier: It can take quite a while for client/os-combo to give up, if packets are silently dropped.

So, try the following:

  • If you have a webserver on localhost, make sure it answers with a 404 fast
  • If you have no local webserver but a firewall, add a rule to it not to drop packets coming from localhost - this will end up in a fast "connection denied"
于 2012-09-06T22:52:26.977 に答える