Database Table: userblobcache

From Dreamwidth Notes
Revision as of 21:51, 11 May 2010 by Exor674 (Talk | contribs)

Jump to: navigation, search

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a clustered table. Ancient system for storing userpics. Used if MogileFS 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
)

Relationships