Manual:$wgVirtualDomainsMapping/de

From mediawiki.org
This page is a translated version of the page Manual:$wgVirtualDomainsMapping and the translation is 21% complete.
Datenbank-Einstellungen: $wgVirtualDomainsMapping
Mapping of virtual database domains to actual databases.
Eingeführt in Version:1.41.0 (Gerrit change 963291; git #8bae6836)
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(array)
Standardwert:[]

Details

Mapping of virtual database domains to actual databases.

Virtual database domains are listed under the DatabaseVirtualDomains property in extensions' extension.json file. Extensions will use a virtual domain name when connecting to a table which they expect might not be in the wiki's main database. This mapping will determine what actual database to connect to.

Usually virtual database domains are used either because on a wikifarm, multiple wikis should share the same table, or because the table contains a lot of data and the extension wants to allow for the flexibility of storing it separately. It's up to the extension to document the expected usage patterns of its virtual DB domains.

If no entry is set, the virtual database domain will be mapped to the main database of the wiki. For example, for routing queries of virtual domain 'vdomain' to 'wikishared' database in 'extension1' cluster. Die Konfiguration sollte wie folgt aussehen:

[ 'vdomain' => [ 'cluster' => 'extension1', 'db' => 'wikishared' ] ]

If the database needs to be the local domain, just set the 'db' to false.

If you want to get another db in the main cluster, just omit 'cluster'. Zum Beispiel:

[ 'centralauth' => [ 'db' => 'centralauth' ] ]