X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_cache.md;h=27a11daa66c7dbe8af06a5ae292b7ec2ff6d5aac;hb=1e4897866435c803ff6e6bbdbe456d8d3038ce98;hp=300959ef384d5c6c5e533782e1bdc38d155d9d5c;hpb=2cd0c1d30d237806e9c3853aa0645f786e31855c;p=friendica.git diff --git a/doc/database/db_cache.md b/doc/database/db_cache.md index 300959ef38..27a11daa66 100644 --- a/doc/database/db_cache.md +++ b/doc/database/db_cache.md @@ -3,6 +3,9 @@ Table cache Stores temporary data +Fields +------ + | Field | Description | Type | Null | Key | Default | Extra | | ------- | ---------------------------- | -------------- | ---- | --- | ------------------- | ----- | | k | cache key | varbinary(255) | NO | PRI | NULL | | @@ -10,4 +13,13 @@ Stores temporary data | 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)