Manual:$wgRCEngines

This page is a translated version of the page Manual:$wgRCEngines and the translation is 54% complete.
最近の更新、新しいページ、ウォッチリスト、履歴: $wgRCEngines
Legacy mapping from URI schemes to RCFeed subclasses.
導入されたバージョン:1.22.0 (Gerrit change 81128; git #ffc71cb6)
廃止予定になったバージョン:1.38.0 (Gerrit change 590684; git #f8ecea1e)
除去されたバージョン:使用中
許容される値:未指定
既定値:(下記参照)

詳細

Legacy mapping from URI schemes to RCFeed subclasses.

Used for $wgRCFeeds (in RecentChange::factory) to determine which class to use if 'class' is not set, but 'uri' is.

この変数は、MediaWiki 1.22 alpha で、$wgStreamLoggers として導入され $wgRCEngines に名称変更されました。

既定値

MediaWiki バージョン:
1.31
$wgRCEngines = [
	'redis' => RedisPubSubFeedEngine::class,
	'udp' => UDPRCFeedEngine::class,
];
MediaWiki バージョン:
1.22 – 1.30
$wgRCEngines = [
	'redis' => 'RedisPubSubFeedEngine',
	'udp' => 'UDPRCFeedEngine',
];

使用法

This variable is an associated array mapping the URI protocol to the fully qualified class name that will handle that protocol.

This represents MediaWiki's built-in engine for sending RC updates over a UDP connection. More engines can be added by adding more keys or overriding existing ones.

関連項目