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