Revision: 43506
Author: ialex
Date: 2008-11-14 22:45:32 +0000 (Fri, 14 Nov 2008)
Log Message:
-----------
* Removed the inclusion of memcached-client.php since this file is autoloaded
* Document a bit
Modified Paths:
--------------
trunk/phase3/includes/ObjectCache.php
Modified: trunk/phase3/includes/ObjectCache.php
===================================================================
--- trunk/phase3/includes/ObjectCache.php 2008-11-14 22:26:12 UTC (rev
43505)
+++ trunk/phase3/includes/ObjectCache.php 2008-11-14 22:45:32 UTC (rev
43506)
@@ -32,7 +32,10 @@
global $wgCaches;
$wgCaches = array();
-/** @todo document */
+/**
+ * Get a cache object.
+ * @param int $inputType cache type, one the the CACHE_* constants.
+ */
function &wfGetCache( $inputType ) {
global $wgCaches, $wgMemCachedServers, $wgMemCachedDebug,
$wgMemCachedPersistent;
$cache = false;
@@ -49,8 +52,7 @@
if ( $type == CACHE_MEMCACHED ) {
if ( !array_key_exists( CACHE_MEMCACHED, $wgCaches ) ) {
- require_once( 'memcached-client.php' );
- if ( !class_exists("MemcachedClientforWiki") ) {
+ if ( !class_exists( 'MemcachedClientforWiki' ) ) {
class MemCachedClientforWiki extends memcached {
function _debugprint( $text ) {
wfDebug( "memcached: $text" );
@@ -104,18 +106,21 @@
return $cache;
}
+/** Get the main cache object */
function &wfGetMainCache() {
global $wgMainCacheType;
$ret =& wfGetCache( $wgMainCacheType );
return $ret;
}
+/** Get the cache object used by the message cache */
function &wfGetMessageCacheStorage() {
global $wgMessageCacheType;
$ret =& wfGetCache( $wgMessageCacheType );
return $ret;
}
+/** Get the cache object used by the parser cache */
function &wfGetParserCacheStorage() {
global $wgParserCacheType;
$ret =& wfGetCache( $wgParserCacheType );
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs