diff options
author | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2008-03-13 19:00:19 +0000 |
---|---|---|
committer | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2008-03-13 19:00:19 +0000 |
commit | fb38bbf72f7755a40cb8b277fe2f4244b1477fcd (patch) | |
tree | 3c5ddf9427ddf9b36cf7c76c10a9176debf39e87 /docs/deferred.txt | |
parent | d2fb76915aab972316f0e3015c9920074c71293b (diff) | |
download | mediawikicore-fb38bbf72f7755a40cb8b277fe2f4244b1477fcd.tar.gz mediawikicore-fb38bbf72f7755a40cb8b277fe2f4244b1477fcd.zip |
docs update
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/31933
Diffstat (limited to 'docs/deferred.txt')
-rw-r--r-- | docs/deferred.txt | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/docs/deferred.txt b/docs/deferred.txt index 06155c56a104..fb9b84818dd9 100644 --- a/docs/deferred.txt +++ b/docs/deferred.txt @@ -1,4 +1,3 @@ - deferred.txt A few of the database updates required by various functions here @@ -25,3 +24,20 @@ may be extended in the future to more general background tasks. Job queue items are fetched out of the queue and run either at a random rate during regular page views (by default) or by a batch process which can be run via maintenance/runJobs.php. + +Currently there is some differents types of Jobs: + + refreshLinks + Used to refresh the database tables that stores the links + beetween pages. When a page is cleared, all pages using these + page are also cleared by inseting a new job for all that pages. + Each job refresh only one page. + + htmlCacheUpdate + clear caches when a template is changed to ensure that changes + can be see. Each job clear $wgUpdateRowsPerJob pages (500 by + default). + + enotifNotify + used when $wgEnotifUseJobQ is true to send mails using the job + queue.
\ No newline at end of file |