mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
Update db cache table documentation
This commit is contained in:
parent
e749e8ef4c
commit
4e6dd7dd5f
1 changed files with 5 additions and 3 deletions
|
@ -1,11 +1,13 @@
|
||||||
Table cache
|
Table cache
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
Stores temporary data
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------------ | ---------------------------------- | ------------ | ---- | --- | ------------------- | ----- |
|
| ------------ | ---------------------------------- | ------------ | ---- | --- | ------------------- | ----- |
|
||||||
| k | horizontal width + url or resource | varchar(255) | NO | PRI | NULL | |
|
| k | cache key | varchar(255) | NO | PRI | NULL | |
|
||||||
| v | OEmbed response from site | text | NO | | NULL | |
|
| v | cached serialized value | text | NO | | NULL | |
|
||||||
|
| expires | datetime of cache expiration | datetime | NO | MUL | 0001-01-01 00:00:00 | |
|
||||||
| updated | datetime of cache insertion | datetime | NO | MUL | 0001-01-01 00:00:00 | |
|
| updated | datetime of cache insertion | datetime | NO | MUL | 0001-01-01 00:00:00 | |
|
||||||
| expire_mode | | int(11) | NO | | 0 | |
|
|
||||||
|
|
||||||
Return to [database documentation](help/database)
|
Return to [database documentation](help/database)
|
||||||
|
|
Loading…
Reference in a new issue