wiki.techinc.nl/includes/MessageCacheHints.php
Domas Mituzas c5b7002917 initial support for partial message cache, the way to have separated message
cache objects by scope and/or severity, though by leaving rarely used messages
standalone on db and/or cached daemons...
2004-10-04 20:36:11 +00:00

16 lines
234 B
PHP

<?
/*
* @package Mediawiki
* @version $Id$
*
* This class should provide methods for message
* cache key hints for various scopes */
class MessageCacheHints {
function get($scope="global") {
return array('TODO');
}
}
?>