* td background set to White to avoid header border shining through
[lhc/web/wiklou.git] / docs / memcached.doc
index 12a26b3..6752e9c 100644 (file)
@@ -110,10 +110,23 @@ LinkCache:
        cleared by: LinkCache::clearBadLink()
                should be cleared on page deletion and rename
 MediaWiki namespace:
-       key: $wgDBname:MediaWiki:title:$title
-       ex: wikidb:MediaWiki:title:Blockedtext
-       stores: string
-       set in: wfMsg()
-       cleared by: Article::editUpdates()
+       key: $wgDBname:messages
+       ex: wikidb:messages
+       stores: an array where the keys are DB keys and the values are messages
+       set in: wfMsg(), Article::editUpdates() both call wfLoadAllMessages()
+       cleared by: nothing
+
+Watchlist:
+       key: $wgDBname:watchlist:id:$userID
+       ex: wikidb:watchlist:id:4635
+       stores: HTML string
+       cleared by: nothing, expiry time $wgWLCacheTimeout (1 hour)
+       note: emergency optimisation only
+
+IP blocks:
+       key: $wgDBname:ipblocks
+       ex: wikidb:ipblocks
+       stores: array of arrays, for the BlockCache class
+       cleared by: BlockCache:clear()
        
 ... more to come ...