pagemachine/typo3-opcache-control

PHP Opcache management for TYPO3

Installs: 23 512

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 5

Forks: 2

Open Issues: 4

Type:typo3-cms-extension

0.0.5 2023-05-15 11:26 UTC

This package is auto-updated.

Last update: 2024-04-08 10:37:59 UTC


README

Provides CLI commands for PHP Opcache management within TYPO3. This is essential to e.g. reset the Opcache on deployments.

Since the web Opcache is managed, resetting the Opcache is essentially the same as the related action in the TYPO3 backend.

Installation

Via Composer:

composer require pagemachine/typo3-opcache-control

Site setup

The CLI commands internally perform real HTTP requests. For this all site configurations must use full URLs for their base. A basic / will not work:

-base: /
+base: https://example.org/

The same goes for baseVariants and %env()% placeholders which can be used for different URLs per environment.

Usage

Use the TYPO3 CLI or TYPO3 Console to execute Opcache control commands.

The Opcache status can be checked using the opcache:status command:

$ typo3cms opcache:status
+---------------------------+------------------+
| opcache_enabled           | true             |
# ...

The Opcache can be reset using the opcache:reset command:

$ typo3cms opcache:reset
Success: opcache reset

The commands are executed with real HTTP requests, thus at least one valid site must be set up.

Testing

All tests can be executed with the shipped Docker Compose definition:

docker-compose run --rm app composer build