$smwgPostEditUpdate
From semantic-mediawiki.org
Configuration parameter details: | |
Name | $smwgPostEditUpdate |
Description | Sets how many jobs should be executed as part of a post-edit event |
Default setting | See below |
Software | Semantic MediaWiki |
Since version | |
Until version | still available |
Configuration | Internal |
Keyword | internal · job queue |
$smwgPostEditUpdate
is an internal configuration parameter that sets which and how many jobs should be executed as part of a post-edit event. The configuration parameter was introduced in Semantic MediaWiki 3.0.0Released on 11 October 2018 and compatible with MW 1.27.0 - 1.31.x.12 and changed in Semantic MediaWiki 3.1.0Released on 23 September 2019 and compatible with MW 1.31.0 - 1.33.x.3.
Default setting[edit]
$smwgPostEditUpdate => [
'check-query' => false,
'job.task' => [
'smw.fulltextSearchTableUpdate' => 1
]
];
This means that jobs updating the full text search database table will be run once per request and that jobs purging the parser cache to do query updates or post-processing of annotations will be run five times per request after a respective edit triggered them.
This configuration parameter must not be modified manually.
See also[edit]
- Info page on API-module "smwtask"Allows to invoke and execute internal Semantic MediaWiki tasks
- Help page on full text search
- Help page on query marker
@annotation
- Help page on embedded query updates
- Help page on configuration parameter
$smwgEnabledQueryDependencyLinksStore
Sets whether tracking and storing of dependencies of embedded queries may be used - Help page on configuration parameter
$smwgQueryDependencyPropertyExemptionList
Sets special properties that should be exempted from embedded queries updates
References
- ^ Semantic MediaWiki: GitHub pull request gh:smw:3318
- ^ Semantic MediaWiki: GitHub pull request gh:smw:3501
- ^ Semantic MediaWiki: GitHub pull request gh:smw:3644