Difference between revisions of "Database Table: userblobcache"

From Dreamwidth Notes
Jump to: navigation, search
(We keep removed tables around in the wiki)
(Robot: Updating: Format, type, flag dropped)
Line 1: Line 1:
{{Database Table|name=userblobcache|table type=clustered}}
+
{{Database Table|name=userblobcache|table type=global|needs work=dropped}}
 
[[description::Ancient system for storing userpics.  Used if MogileFS is not being run]]
 
[[description::Ancient system for storing userpics.  Used if MogileFS is not being run]]
 
= Definition =
 
= Definition =

Revision as of 21:51, 11 May 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global table.This database table is flagged as needing checking for the reason: dropped
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