2004-05-09 01:30:34 +00:00
|
|
|
-- Used for caching expensive grouped queries
|
|
|
|
|
|
2005-01-14 13:33:17 +00:00
|
|
|
CREATE TABLE /*$wgDBprefix*/querycache (
|
2005-05-02 08:40:17 +00:00
|
|
|
-- A key name, generally the base name of of the special page.
|
2007-06-22 20:09:59 +00:00
|
|
|
qc_type varbinary(32) NOT NULL,
|
2012-10-20 11:35:38 +00:00
|
|
|
|
2005-05-02 08:40:17 +00:00
|
|
|
-- Some sort of stored value. Sizes, counts...
|
2007-06-22 20:09:59 +00:00
|
|
|
qc_value int unsigned NOT NULL default '0',
|
2012-10-20 11:35:38 +00:00
|
|
|
|
2005-05-02 08:40:17 +00:00
|
|
|
-- Target namespace+title
|
2005-05-02 10:15:02 +00:00
|
|
|
qc_namespace int NOT NULL default '0',
|
2011-01-20 23:56:47 +00:00
|
|
|
qc_title varchar(255) binary NOT NULL default '',
|
2012-10-20 11:35:38 +00:00
|
|
|
|
2004-05-09 01:30:34 +00:00
|
|
|
KEY (qc_type,qc_value)
|
2005-05-02 08:40:17 +00:00
|
|
|
|
2007-04-22 14:04:06 +00:00
|
|
|
) /*$wgDBTableOptions*/;
|