* A new tab in the preferencesc called 'File' for any current and future
[lhc/web/wiklou.git] / docs / memcached.doc
index 93e402d..6752e9c 100644 (file)
@@ -113,6 +113,20 @@ MediaWiki namespace:
        key: $wgDBname:messages
        ex: wikidb:messages
        stores: an array where the keys are DB keys and the values are messages
-       set in: wfMsg()
-       cleared by: Article::editUpdates()
+       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 ...