function()
{
if (self::$type) {
switch (self::$type){
case 'apc':
return apc_cache_info();
case 'memcache':
return $this->obj->getStats();
case 'files':
return $this->fs->getFiles($this->path);
}
}
}