Manual:Transcache table
From MediaWiki.org
| ↑ Manual:Contents | MediaWiki database layout | Transcache table |
Cache of interwiki transclusion.
MediaWiki version: 1.8
"DESCRIBE transcache" in MediaWiki 1.8 gives the following:
+-------------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------------+--------------+------+-----+---------+-------+ | tc_url | varchar(255) | NO | PRI | NULL | | | tc_contents | text | YES | | NULL | | | tc_time | int(11) | NO | | NULL | | +-------------+--------------+------+-----+---------+-------+
MediaWiki version: 1.9
mysql> describe mw_transcache; +-------------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------------+--------------+------+-----+---------+-------+ | tc_url | varchar(255) | NO | PRI | NULL | | | tc_contents | text | YES | | NULL | | | tc_time | int(11) | NO | | NULL | | +-------------+--------------+------+-----+---------+-------+ 3 rows in set (0.02 sec)