]> git.mxchange.org Git - friendica.git/blob - doc/database/db_cache.md
1d1d552c3a3771e7a6f931d1b46374187a503405
[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) | YES | PRI | NULL |  |    
8 | v | cached serialized value | mediumtext | NO |  | NULL |  |    
9 | expires | datetime of cache expiration | datetime | YES |  | 0001-01-01 00:00:00 |  |    
10 | updated | datetime of cache insertion | datetime | YES |  | 0001-01-01 00:00:00 |  |    
11
12 Return to [database documentation](help/database)