repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge "Improve sorting on SpecialWanted*-Pages"
[mediawiki.git]
/
maintenance
/
archives
/
patch-objectcache.sql
blob
5edf305b9132ec9eec5a13bc3d82af5734c4fe96
1
-- For a few generic cache operations if not using Memcached
2
CREATE TABLE /*$wgDBprefix*/objectcache (
3
keyname varbinary(255) NOT NULL default '',
4
value mediumblob,
5
exptime datetime,
6
UNIQUE KEY (keyname),
7
KEY (exptime)
8
9
) /*$wgDBTableOptions*/;