]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_cache.md
Merge pull request #10797 from annando/diaspora-deprecated
[friendica.git] / doc / database / db_cache.md
index 300959ef384d5c6c5e533782e1bdc38d155d9d5c..27a11daa66c7dbe8af06a5ae292b7ec2ff6d5aac 100644 (file)
@@ -3,6 +3,9 @@ Table cache
 
 Stores temporary data
 
+Fields
+------
+
 | Field   | Description                  | Type           | Null | Key | Default             | Extra |
 | ------- | ---------------------------- | -------------- | ---- | --- | ------------------- | ----- |
 | k       | cache key                    | varbinary(255) | NO   | PRI | NULL                |       |
@@ -10,4 +13,13 @@ Stores temporary data
 | 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)