hksagentur/kirby-apcu

A simple APCu plugin for Kirby CMS

Maintainers

Package info

github.com/hksagentur/kirby-apcu

Type:kirby-plugin

pkg:composer/hksagentur/kirby-apcu

Transparency log

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-08-05 13:29 UTC

This package is auto-updated.

Last update: 2026-08-05 13:33:40 UTC


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.