Extension:APC

From MediaWiki.org

Jump to: navigation, search

       

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
APC

Release status: stable

Implementation  Special page
Description View and manage APC cache within MediaWiki
Author(s)  Niklas Laxström (NikerabbitTalk)
License No license specified
Download Download snapshot

Subversion [Help]
Browse source code

check usage (experimental)

APC is able to view and manage APC cache within MediaWiki. It requires the PHP's APC extension.

[edit] Installation

  1. Download the latest snapshot and extract it to your extensions directory.
  2. Add
    require_once( "$IP/extensions/APC/ViewAPC.php" );
    to LocalSettings.php
  3. The extension should be now active.

Special:ViewAPC is unrestricted, but it has some additional functionality that requires the apc right. You can create a new group and assign it this right:

$wgGroupPermissions['apc']['apc'] = true;

or simply give the right to an existing trusted group, like bureaucrat:

$wgGroupPermissions['bureaucrat']['apc'] = true;