Erweiterung:QuickInstantCommons
![]() Freigabestatus: stabil |
|
---|---|
Einbindung | Datei-Repositorium |
Beschreibung | Provides a performance optimized version of InstantCommons |
Autor(en) | Brian Wolff (BawolffDiskussion) |
Letzte Version | 1.5 |
MediaWiki | >= 1.35 |
PHP | >= 7.2.11 |
Composer | mediawiki/quickinstantcommons |
Lizenz | GNU General Public License 2.0 oder neuer |
Herunterladen | README |
|
|
Übersetze die QuickInstantCommons-Erweiterung, wenn sie auf translatewiki.net verfügbar ist | |
Probleme | Offene Aufgaben · Einen Fehler melden |
The QuickInstantCommons extension is a performance optimized version of $wgUseInstantCommons
.
Es erlaubt auch einfaches Thumbnailing von Dateien, die keine MediaHandler-Erweiterung im lokalen Wiki haben.
For example, the first page of a PDF will still thumbnail even without Extension:PDFHandler installed, but advanced features like multipage requires the extension to be installed locally.
Leistung
Initial testing was done using the page en.wikipedia.org: List of governors general of Canada (revision 1054426240) which has 85 images. Die Tests wurden mit deaktiviertem Caching und einer geschätzten TTFB für die API bei einer bereits eingerichteten Verbindung von ~250 ms durchgeführt.
Es dauerte 1038.18 Sekunden mit InstantCommons vom MediaWiki-Kern, 18.50 Sekunden mit dieser Erweiterung mit deaktivierten Prefetching und 1.10 Sekunden mit dieser Erweiterung, jedoch mit aktivierten Prefetching.
Installation
- Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens
QuickInstantCommons
im Ordnerextensions/
ablegen. - Folgenden Code am Ende deiner
LocalSettings.php
hinzufügen:wfLoadExtension( 'QuickInstantCommons' );
- Erledigt – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.
Konfiguration
If you were previously using $wgUseInstantCommons
, no configuration is needed beyond wfLoadExtension-ing this extension; Configuration is only required for advanced usage.
$wgUseQuickInstantCommons
- Automatically setup
$wgForeignFileRepos
to use this extension (defaults true). Set to false if you need to customize something. $wgQuickInstantCommonsPrefetch
- Enable prefetching images based on what's in DB (Default true). Most of the time this is a major performance boost, but its possible that occasionally this might cause work to be done that isn't necessary.
$wgQuickInstantCommonsPrefetchMaxLimit
- Max number of images to prefetch if prefetching is enabled (Default: 1000). Could hit OOM issues if too high.
Erweiterte Konfiguration
You can directly configure $wgForeignFileRepos if you want. For example, if you want to use this extension with a wiki that is not commons. Example:
wfLoadExtension( 'QuickInstantCommons' );
$wgUseQuickInstantCommons = false;
$wgForeignFileRepos[] = [
'class' => '\MediaWiki\Extension\QuickInstantCommons\Repo',
'name' => 'commonswiki', // Must be a distinct name
'directory' => $wgUploadDirectory, // FileBackend needs some value here.
'apibase' => 'https://commons.wikimedia.org/w/api.php',
'hashLevels' => 2, // Important this matches foreign repo if 404 transform enabled.
'thumbUrl' => 'https://upload.wikimedia.org/wikipedia/commons/thumb', // Set to false to auto-detect
'fetchDescription' => true, // Optional
'descriptionCacheExpiry' => 43200, // 12 hours, optional (values are seconds). This cache is not adaptive.
'transformVia404' => true, // Whether foreign repo supports 404 transform. Much faster if supported
'abbrvThreshold' => 160, // must match what foreign repo uses if 404 transform enabled. Default is 255. Wikimedia uses 160.
'apiMetadataExpiry' => 60*60*24, // Max time metadata is cached for. Recently changed items are cached for less
'disabledMediaHandlers' => [TiffHandler::class] // media handler extensions to not use. For 404 handling its important that the local media handler extensions match the foreign ones.
];
apiMetadataExpiry
is probably the most important value from a performance perspective (other then $wgQuickInstantCommonsPrefetch
).
If you feel things are slow, try increasing it. If a new version of a file is uploaded, it might not show up properly until after metadata expires.
However you can force an expiry by purging the file description page on the local wiki.
If you want to maxamize performance, an appropriate value might be 60*60*24*30 (1 month)
ForeignAPIRepo
, $wgResponsiveImages
should not impact performance when transformVia404 is enabled, so it is recommended that you keep it turned on.Differences between this and ForeignApiFileRepo
- Caches curl handle
- Uses HTTP/2 multiplexing (Major performance boost)
- ?action=purge of File pages purges image metadata
- Does not support local thumbnail caching
- Automatically generate thumbnail URLs locally if foreign repository supports 404 handling (Major performance boost. Especially when responsive images are enabled)
- Prefetch expected images based on imagelinks table (Major performance boost)
- Allows limited thumbnailing of files that are missing handler extension (e.g. Still show thumbnail of first page of a PDF even if you don't have Extension:PDFHandler installed).
- Adaptive TTL support that actually works (If the foreign image was recently edited, cache for shorter time, so that if its vandalism the revert will show up faster).
- Configurable metadata caching time, with better defaults than core.
- When using a foreign repo that itself has foreign repos (For example, how en.wikipedia.org includes commons.wikimedia.org), image page descriptions will now work correctly.
- file redirects for files that are foreign files on the foreign repo work.
- allows disabling media handlers that are incompatible and use fallback behaviour instead.
- for images that can't use 404 rendering (missing local media handler extension or if transformVia404 false), predictively prefetches the responsive high-dpi thumbnails
- reuse http/2 connection for fetching description page text
- do not show text of 404 if the description page is missing on foreign wiki. Instead just show it as blank.
Other ideas that haven't been implemented: better adaptive cache for image description pages.
Bekannte Probleme
- If you are using Extension:TimedMediaHandler, you need to use at least MediaWiki 1.38 for this extension to work with video files.
Siehe auch
Diese Erweiterung ist in den folgenden Paketen und/oder WikiFarmen beinhalten: |