Manual:deleteArchivedRevisions.php

From mediawiki.org
This page is a translated version of the page Manual:DeleteArchivedRevisions.php and the translation is 45% complete.
MediaWiki バージョン:
1.11

詳細

deleteArchivedRevisions.php file is a maintenance script to delete all the archived (hidden from public view) revisions, by clearing out the archive table. これらの版は復元できなくなります。 Deleted pages and archived revisions to a given page are permanently deleted, but the complete history of existing pages will remain.

When a page is 'deleted' by an administrator (Help:削除と復元 ), records are moved from the 'revision' table to the 'archive' table, although the bulk of the data (page text) remains in the 'text' table. The script deletes all records from the archive table and then invokes purgeOldText.php to purge the text records which no revision links to. This can be useful for reducing the size of the database but it does mean you lose the ability to restore the according revisions.

Prior to MediaWiki 1.16, a helper file deleteArchivedRevisions.inc contained the class that performs the work. This class was merged into deleteArchivedRevisions.php in 1.16.

警告 警告: This script attempts to remove unused entries from the text table, which can cause potential data loss.

オプション/引数

オプション 説明 必須かどうか
--delete Does the deletion (otherwise only displays the number of revisions to delete). 省略可能

使用法

php maintenance/deleteArchivedRevisions.php [ --delete ]

Checking potential deletion

Terminal

Making actual deletion

Terminal

関連項目