Difference between revisions of "Database Table: userblobcache"

From Dreamwidth Notes
Jump to: navigation, search
m
Line 1: Line 1:
Ancient system for storing userpics.  Used if MogileFS is not being run.
+
{{Database Table|name=userblobcache|table type=global}}
 +
[[description::Ancient system for storing userpics.  Used if MogileFS 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}}

Revision as of 12:44, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global 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