X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_cache.md;h=27a11daa66c7dbe8af06a5ae292b7ec2ff6d5aac;hb=8dc4499bcfe0adef3a3a4ff77abfe0c5588a3409;hp=1d1d552c3a3771e7a6f931d1b46374187a503405;hpb=31db9dbef7f6a4f98a6c29d15493bcffb0c39929;p=friendica.git diff --git a/doc/database/db_cache.md b/doc/database/db_cache.md index 1d1d552c3a..27a11daa66 100644 --- a/doc/database/db_cache.md +++ b/doc/database/db_cache.md @@ -1,12 +1,25 @@ Table cache =========== + Stores temporary data -| Field | Description | Type | Null | Key | Default | Extra | -| ----- | ----------- | ---- | ---- | --- | ------- | ----- | -| k | cache key | varbinary(255) | YES | PRI | NULL | | -| v | cached serialized value | mediumtext | NO | | NULL | | -| expires | datetime of cache expiration | datetime | YES | | 0001-01-01 00:00:00 | | -| updated | datetime of cache insertion | datetime | YES | | 0001-01-01 00:00:00 | | +Fields +------ + +| Field | Description | Type | Null | Key | Default | Extra | +| ------- | ---------------------------- | -------------- | ---- | --- | ------------------- | ----- | +| k | cache key | varbinary(255) | NO | PRI | NULL | | +| v | cached serialized value | mediumtext | YES | | NULL | | +| expires | datetime of cache expiration | datetime | NO | | 0001-01-01 00:00:00 | | +| updated | datetime of cache insertion | datetime | NO | | 0001-01-01 00:00:00 | | + +Indexes +------------ + +| Name | Fields | +| --------- | ---------- | +| PRIMARY | k | +| k_expires | k, expires | + Return to [database documentation](help/database)