]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_cache.md
We are now setting the corresponding worker id
[friendica.git] / doc / database / db_cache.md
index 328f485e052200557826a808a9fd3be258671fc9..27a11daa66c7dbe8af06a5ae292b7ec2ff6d5aac 100644 (file)
@@ -1,12 +1,25 @@
 Table cache
 ===========
+
 Stores temporary data
 
-| Field | Description | Type | Null | Key | Default | Extra |
-| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
-| k | cache key | varbinary(255) | YES | PRI |  |  |    
-| v | cached serialized value | mediumtext | NO |  |  |  |    
-| expires | datetime of cache expiration | datetime | YES |  | 0001-01-01 00:00:00 |  |    
-| updated | datetime of cache insertion | datetime | YES |  | 0001-01-01 00:00:00 |  |    
+Fields
+------
+
+| Field   | Description                  | Type           | Null | Key | Default             | Extra |
+| ------- | ---------------------------- | -------------- | ---- | --- | ------------------- | ----- |
+| k       | cache key                    | varbinary(255) | NO   | PRI | NULL                |       |
+| v       | cached serialized value      | mediumtext     | YES  |     | NULL                |       |
+| 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)