available. Currently using for the message cache to avoid reading every message separately. This now is only slightly slower than memcached in my tests when $wgUseDatabaseMessages is enabled, so it's a bit of a speedup for common hosts.
8 lines
219 B
SQL
8 lines
219 B
SQL
-- For a few generic cache operations if not using Memcached
|
|
CREATE TABLE objectcache (
|
|
keyname char(255) binary not null default '',
|
|
value mediumblob,
|
|
exptime datetime,
|
|
unique key (keyname),
|
|
key (exptime)
|
|
);
|