Difference between revisions of "Database Table: userblobcache"
From Dreamwidth Notes
(10 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | Ancient system for storing userpics. Used if MogileFS is not being run | + | {{Database Table|name=userblobcache|table type=global|repo=dw-free|removed=1|removed in=1198e89d8511}} |
+ | [[description::Ancient system for storing userpics. Used if MogileFS or BlobStore is not being run]] | ||
+ | = Definition = | ||
+ | <source lang="sql"> | ||
+ | CREATE TABLE userblobcache ( | ||
+ | userid INT UNSIGNED NOT NULL, | ||
+ | bckey VARCHAR(60) NOT NULL, | ||
+ | PRIMARY KEY (userid, bckey), | ||
+ | timeexpire INT UNSIGNED NOT NULL, | ||
+ | INDEX (timeexpire), | ||
+ | value MEDIUMBLOB | ||
+ | ) | ||
+ | </source> | ||
+ | {{Database Table Footer|removed=1}} |
Latest revision as of 07:08, 9 February 2017
Note: This table is removed and no longer used. This table was removed in dw-free changeset 1198e89d8511 [1]
This is a global table.
Ancient system for storing userpics. Used if MogileFS or BlobStore is not being run
Definition
CREATE TABLE userblobcache ( userid INT UNSIGNED NOT NULL, bckey VARCHAR(60) NOT NULL, PRIMARY KEY (userid, bckey), timeexpire INT UNSIGNED NOT NULL, INDEX (timeexpire), VALUE MEDIUMBLOB )