[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/maintenance/archives/ -> patch-querycache.sql (source)

   1  -- Used for caching expensive grouped queries
   2  
   3  CREATE TABLE /*$wgDBprefix*/querycache (
   4    -- A key name, generally the base name of of the special page.
   5    qc_type varbinary(32) NOT NULL,
   6  
   7    -- Some sort of stored value. Sizes, counts...
   8    qc_value int unsigned NOT NULL default '0',
   9  
  10    -- Target namespace+title
  11    qc_namespace int NOT NULL default '0',
  12    qc_title varchar(255) binary NOT NULL default '',
  13  
  14    KEY (qc_type,qc_value)
  15  
  16  ) /*$wgDBTableOptions*/;


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1