Jump to content

Manual:$wgRCEngines/ko

From mediawiki.org
This page is a translated version of the page Manual:$wgRCEngines and the translation is 31% complete.
Recent changes, new pages, watchlist and history: $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)
이 변수가 사라진 버전:1.46.0 (Gerrit change 1251549; git #75deb0a0)
허용값:미지정
기본값:(see below)

상세

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.

This variable was introduced as $wgStreamLoggers and was renamed to $wgRCEngines in MediaWiki 1.22 alpha.

기본값

미디어위키 버전:
1.31 – 1.46
$wgRCEngines = [
	'redis' => RedisPubSubFeedEngine::class,
	'udp' => UDPRCFeedEngine::class,
];
미디어위키 버전:
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.

같이 보기