hksagentur / kirby-apcu
A simple APCu plugin for Kirby CMS
1.0.0
2026-08-05 13:29 UTC
Requires
- getkirby/composer-installer: ^1.2.1
Requires (Dev)
- getkirby/cms: ^5.3
- laravel/pint: ^1.22
README
A panel plugin to inspect APCu (APC User Cache), the userland shared memory cache shipped with PHP.
Features
- Memory usage and hit/miss statistics for the APCu shared memory segment
- List of currently cached pages
- Breakdown of cached UUIDs by type
- One-click button to flush all APCu caches
Requirements
Kirby CMS (>=5.3)
PHP (>= 8.3)
Installation
Composer
composer require hksagentur/kirby-apcu
Download
Download the project archive and copy the files to the plugin directory of your kirby installation. By default this directory is located at /site/plugins.
FAQ
How do I restrict access to the view to a specific role?
The plugin registers its Panel area under the id apcu, which Kirby automatically exposes as an access.apcu permission. By default every role has access. To restrict the view to admins, disable it for your other roles:
# site/blueprints/users/default.yml permissions: access: apcu: false
# site/blueprints/users/admin.yml permissions: access: apcu: true
License
ISC License. Please see License File for more information.