aboutsummaryrefslogtreecommitdiffstats
path: root/cache
Commit message (Collapse)AuthorAgeFilesLines
* Update Apache config syntax in .htaccess filesKunal Mehta2024-03-231-1/+1
| | | | | | | | | | "Deny from all" is deprecated; the replacement syntax has been available since Apache 2.4 (originally released in 2012). See <https://httpd.apache.org/docs/2.4/howto/access.html>. Bug: T360850 Change-Id: I825053ccefe34f6ca4e04af5ad2601f79e4d51a7
* Revert .htaccess permissions back to 0644Erik Bernhardson2013-10-281-0/+0
| | | | | | | Change Id6916fe999c0faa38de878b7b5687e7ea00901bd accidently changed the permissions on this file, changing it back. Change-Id: I14b68b066ed16b2221f4be52172ad7b32b86a61f
* New hook accommodates non-revision rc queriesErik Bernhardson2013-10-241-0/+0
| | | | | | | | | | | | | | | | | | Within Special:RecentChanges the default non-extended query contains ( rc_this_oldid=page_latest OR rc_type=3 ) Wikidata has previously used the SpecialWatchlistQuery hook to look for this exact string and change rc_type=3 to rc_type IN (3,5). Flow is another type of change that doesn't have a matching row in revisions to match page_latest for and needs to be added to this query. This patch adds a new hook, SpecialWatchlistGetNonRevisionTypes, which allows different extensions to add to a list of values for rc_type (or rc_source once 85787 is merged). This will allow multiple extensions to affect the resulting query without them breaking eachother. Change-Id: Id6916fe999c0faa38de878b7b5687e7ea00901bd
* * Introduced a new system for localisation caching. The system is based ↵Tim Starling2009-06-281-0/+1
around fast fetches of individual messages, minimising memory overhead and startup time in the typical case. It handles both core messages (formerly in Language.php) and extension messages (formerly in MessageCache.php). Profiling indicates a significant win for average throughput. * The serialized message cache, which would have been redundant, has been removed. Similar performance characteristics can be achieved with $wgLocalisationCacheConf['manualRecache'] = true; * Added a maintenance script rebuildLocalisationCache.php for offline rebuilding of the localisation cache. * Extension i18n files can now contain any of the variables which can be set in Messages*.php. It is possible, and recommended, to use this feature instead of the hooks for special page aliases and magic words. * $wgExtensionAliasesFiles, LanguageGetMagic and LanguageGetSpecialPageAliases are retained for backwards compatibility. $wgMessageCache->addMessages() and related functions have been removed. wfLoadExtensionMessages() is a no-op and can continue to be called for b/c. * Introduced $wgCacheDirectory as a default location for the various local caches that have accumulated. Suggested $IP/cache as a good place for it in the default LocalSettings.php and created this directory with a deny-all .htaccess. * Patched Exception.php to avoid using the message cache when an exception is thrown from within LocalisationCache, since this tends to fail horribly. * Removed Language::getLocalisationArray(), Language::loadLocalisation(), Language::load() * Fixed FileDependency::__sleep() * In Cdb.php, fixed newlines in debug messages In MessageCache::get(): * Replaced calls to $wgContLang capitalisation functions with plain PHP functions, reducing the typical case from 99us to 93us. Message cache keys are already documented as being restricted to ASCII. * Implemented a more efficient way to filter out bogus language codes, reducing the "foo/en" case from 430us to 101us * Optimised wfRunHooks() in the typical do-nothing case, from ~30us to ~3us. This reduced MessageCache::get() typical case time from 93us to 38us. * Removed hook MessageNotInMwNs to save an extra 3us per cache hit. Reimplemented the only user (LocalisationUpdate) using the new hook LocalisationCacheRecache. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/52503