Newer
Older
Import / web / www.xiaofrog.com / wiki / maintenance / archives / patch-objectcache.sql
@John Ryland John Ryland on 22 Dec 2020 262 bytes import NUC files
-- For a few generic cache operations if not using Memcached
CREATE TABLE /*$wgDBprefix*/objectcache (
  keyname varbinary(255) binary not null default '',
  value mediumblob,
  exptime datetime,
  unique key (keyname),
  key (exptime)

) /*$wgDBTableOptions*/;