Manual:$wgHTCPMulticastAddress

This page is a translated version of the page Manual:$wgHTCPMulticastAddress and the translation is 79% complete.
HTCP マルチキャスト パージング: $wgHTCPMulticastAddress
What address to send udp HTCP purge packets if being used
導入されたバージョン:1.4.1
除去されたバージョン:1.24.0 (Gerrit change 150761; git #0eed71b7)
許容される値:(IP アドレス)
既定値:false (1.9-1.23)
"224.0.0.85" (1.4.1-1.8)

詳細

廃止予定になっています。 この変数は 1.4.1 で登場しましたが、DefaultSettings.php 内でコメント化されていました。 1.9.0 以降、false が設定されています。 MediaWiki 1.20 で $wgHTCPMulticastRouting に置き換えられ、MediaWiki 1.22 および後続のバージョンで $wgHTCPRouting に置き換えられました。

HTCP is a method of purging entries from the Squid cache that can use multicast and udp which is faster then opening an http connection to every squid server.

The $wgHTCPMulticastAddress variable is deprecated as of MediaWiki 1.20.0 but is still recognized by being copied to the new one in includes/Setup.php :

// MediaWiki 1.22 で、$wgHTCPMulticastRouting は $wgHTCPRouting に名称変更されました
// 後方互換性を確保する。
if ( !$wgHTCPRouting && $wgHTCPMulticastRouting ) {
        $wgHTCPRouting = $wgHTCPMulticastRouting;
}

// 1.20 未満のバージョン由来の後方互換の設定をもとに $wgHTCPRouting を初期化します。
if ( !$wgHTCPRouting && $wgHTCPMulticastAddress ) {
        $wgHTCPRouting = array(
                '' => array(
                        'host' => $wgHTCPMulticastAddress,
                        'port' => $wgHTCPPort,
                )
        );
}

関連項目