Manual:log_search テーブル
↑ Manual:コンテンツ | MediaWiki のデータベース レイアウト | log_search テーブル |
MediaWiki バージョン: | ≧ 1.16 |
log_search テーブルです (r50567 で追加されました)。 Either or both log_search and logging.log_params can be used for storing data about log events. log_search, being indexed, is used for filtering for live queries. RevisionDelete for example uses it to filter log events down to the revision ID (not just page). For example, if revisions 48 and 49 are deleted by log event 29, then there would be two rows created in log_search, with ls_field equal to 'rev_id' for both fields, ls_value equal to 48 for the first field and 49 for the second field, and ls_log_id equal to 29 for both fields. For offline use (e.g. slow analytics), log_params is enough.
The functions used for storing data in log_search are usually ManualLogEntry::setRelations() and LogPage::addRelations() .
フィールド
ls_field
ID の種類です ('associated_rev_id '、'log_id '、'ipb_id '、'target_author_id'に加え、tables.sql によると'rev_timestamp 'と'username '。) Others can be added.
ls_value
The value of the ID (e.g. if ls_field is 'rev_id', then ls_value would contain the rev_id).
ls_log_id
log_id へのキーです
スキーマの要約
MediaWiki バージョン: | ≧ 1.16 |
DESCRIBE log_search;
+-----------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+------------------+------+-----+---------+-------+ | ls_field | varbinary(32) | NO | PRI | NULL | | | ls_value | varbinary(255) | NO | PRI | NULL | | | ls_log_id | int(10) unsigned | NO | PRI | 0 | | +-----------+------------------+------+-----+---------+-------+
インデックス
MediaWiki バージョン: | ≧ 1.30 |
SHOW INDEX IN log_search;
+------------+------------+-----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | +------------+------------+-----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | log_search | 0 | PRIMARY | 1 | ls_field | A | 0 | NULL | NULL | | BTREE | | | | log_search | 0 | PRIMARY | 2 | ls_value | A | 0 | NULL | NULL | | BTREE | | | | log_search | 0 | PRIMARY | 3 | ls_log_id | A | 0 | NULL | NULL | | BTREE | | | | log_search | 1 | ls_log_id | 1 | ls_log_id | A | 0 | NULL | NULL | | BTREE | | | +------------+------------+-----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+