Externallinks table

From MediaWiki.org

Jump to: navigation, search
Manual:Contents MediaWiki database layout Externallinks table


The externallinks table is where MediaWiki stores and tracks external links. This table was introduced after 1.5.


MediaWiki version: 1.6

DESCRIBE externallinks in version 1.6 gives the following:

+----------+-----------------+------+-----+---------+-------+
| Field    | Type            | Null | Key | Default | Extra |
+----------+-----------------+------+-----+---------+-------+
| el_from  | int(8) unsigned |      | MUL | 0       |       |
| el_to    | blob            |      | MUL |         |       |
| el_index | blob            |      | MUL |         |       |
+----------+-----------------+------+-----+---------+-------+
MediaWiki version: 1.8

DESCRIBE externallinks in version 1.8 gives the following:

+----------+-----------------+------+-----+---------+-------+
| Field    | Type            | Null | Key | Default | Extra |
+----------+-----------------+------+-----+---------+-------+
| el_from  | int(8) unsigned | NO   | MUL | 0       |       |
| el_to    | blob            | NO   | MUL | NULL    |       |
| el_index | blob            | NO   | MUL | NULL    |       |
+----------+-----------------+------+-----+---------+-------+


MediaWiki version: 1.9
+----------+-----------------+------+-----+---------+-------+
| Field    | Type            | Null | Key | Default | Extra |
+----------+-----------------+------+-----+---------+-------+
| el_from  | int(8) unsigned | NO   | MUL | 0       |       |
| el_to    | blob            | NO   | MUL | NULL    |       |
| el_index | blob            | NO   | MUL | NULL    |       |
+----------+-----------------+------+-----+---------+-------+


MediaWiki version: 1.11
+----------+-----------------+------+-----+---------+-------+
| Field    | Type            | Null | Key | Default | Extra |
+----------+-----------------+------+-----+---------+-------+
| el_from  | int(10) unsigned| NO   | MUL | 0       |       |
| el_to    | blob            | NO   | MUL | NULL    |       |
| el_index | blob            | NO   | MUL | NULL    |       |
+----------+-----------------+------+-----+---------+-------+


MediaWiki version: 1.12
+----------+-----------------+------+-----+---------+-------+
| Field    | Type            | Null | Key | Default | Extra |
+----------+-----------------+------+-----+---------+-------+
| el_from  | int(8) unsigned | NO   | MUL | 0       |       |
| el_to    | blob            | NO   | MUL | NULL    |       |
| el_index | blob            | NO   | MUL | NULL    |       |
+----------+-----------------+------+-----+---------+-------+

The el_from is the page identifier of the referring wiki page. el_to is the actual URL itself and is passed to the browser, whilst el_index is the same URL stripped of user and password information, then reversed for faster searching.

That is, a URL stored in el_to of 'http://user:password@sub.example.com/page.html' becomes 'http://com.example.sub./page.html' , which allows searches of the form 'Show all links pointing to *.example.com'.

Personal tools