cache objects by scope and/or severity, though by leaving rarely used messages standalone on db and/or cached daemons...
16 lines
234 B
PHP
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');
|
|
}
|
|
}
|
|
|
|
?>
|