]> git.mxchange.org Git - friendica.git/blob - doc/database/db_cache.md
300959ef384d5c6c5e533782e1bdc38d155d9d5c
[friendica.git] / doc / database / db_cache.md
1 Table cache
2 ===========
3
4 Stores temporary data
5
6 | Field   | Description                  | Type           | Null | Key | Default             | Extra |
7 | ------- | ---------------------------- | -------------- | ---- | --- | ------------------- | ----- |
8 | k       | cache key                    | varbinary(255) | NO   | PRI | NULL                |       |
9 | v       | cached serialized value      | mediumtext     | YES  |     | NULL                |       |
10 | expires | datetime of cache expiration | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
11 | updated | datetime of cache insertion  | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
12
13 Return to [database documentation](help/database)