diff options
author | daniel <dkinzler@wikimedia.org> | 2022-06-02 20:15:36 +0200 |
---|---|---|
committer | Derick Alangi <alangiderick@gmail.com> | 2022-06-14 14:11:37 +0100 |
commit | 4dd7bd16b5d3c8156bbb5427f64a4fbf20958bf6 (patch) | |
tree | 967a4d22ec2bbd9e43f031f1eb812ea248b6fab1 /includes/config-vars.php | |
parent | 41e15246c36e32a3bd47e3f2616ad0725dc34918 (diff) | |
download | mediawikicore-4dd7bd16b5d3c8156bbb5427f64a4fbf20958bf6.tar.gz mediawikicore-4dd7bd16b5d3c8156bbb5427f64a4fbf20958bf6.zip |
ParsoidOutputStash: make storage backend configurable.
This introduces the ParsoidOutputStash config setting, which defines the
storage backend and cache duration. The storage backend name refers to
an entry in the ObjectCache setting, and defaults to the main stash.
Bug: T267990
Bug: T309016
Change-Id: Ic67dc43ed9843810e4b180127f9a3bb7608f7608
Diffstat (limited to 'includes/config-vars.php')
-rw-r--r-- | includes/config-vars.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/config-vars.php b/includes/config-vars.php index 8c3d9c1d3e85..adba8b05ea49 100644 --- a/includes/config-vars.php +++ b/includes/config-vars.php @@ -1469,6 +1469,12 @@ $wgEnableWANCacheReaper = null; $wgMainStash = null; /** + * Config variable stub for the ParsoidCacheConfig setting, for use by phpdoc and IDEs. + * @see MediaWiki\MainConfigSchema::ParsoidCacheConfig + */ +$wgParsoidCacheConfig = null; + +/** * Config variable stub for the ChronologyProtectorStash setting, for use by phpdoc and IDEs. * @see MediaWiki\MainConfigSchema::ChronologyProtectorStash */ |