Extension:APC
From MediaWiki.org
|
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 |
||
|
|||
|
check usage (experimental) |
|||
APC is able to view and manage APC cache within MediaWiki. It requires the PHP's APC extension.
[edit] Installation
- Download the latest snapshot and extract it to your extensions directory.
- Add
to LocalSettings.phprequire_once( "$IP/extensions/APC/ViewAPC.php" );
- 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;