Skip to content

Devops

Cache clearing

Clearing file cache using the Symfony cache:clear command

Symfony provides a command for clearing cache. It will delete all file-based caches, which mainly consist of a Twig template, a service container, and the Symfony route cache, but also everything else stored in the cache folder. Out of the box on a single-server setup this includes Content cache. For further information on the command's use, see its help text:

1
php bin/console --env=prod cache:clear -h

Note

If you do not specify an environment, by default cache:clear will clear the cache for the dev environment. If you want to clear it for prod you need to use the --env=prod option.

Clustering

In clustering setup (with several web servers), the command to clear file cache needs to be executed on every web server.

Clearing content cache on a cluster setup

For a cluster setup, the content cache (HTTP cache and Persistence cache) must be set up to be shared among the servers. And while all relevant cache is cleared for you on Repository changes when using the APIs, there might be times where you'll need to clear cache manually: 

Web Debug Toolbar

As of Ibexa DXP v4.5, the Symfony Web Debug Toolbar is no longer installed by default. To install it, run the following command:

1
composer require symfony/debug-pack

After you have installed Symfony Web Debug Toolbar, it will be available when running Ibexa DXP in the dev environment. It is extended with some Ibexa DXP-specific information:

Ibexa DXP info in Web Debug Toolbar

SPI (persistence)

This section provides the number of non-cached SPI calls and handlers. You can see details of these calls in the Symfony Profiler page.

SiteAccess

Here you can see the name of the current SiteAccess and how it was matched. For reference see the list of possible SiteAccess matchers.

Logging and debug configuration

Logging in Ibexa DXP consists of two parts. One are several debug systems that integrate with Symfony developer toolbar to give you detailed information about what is going on. The other is the standard PSR-3 logger, as provided by Symfony using Monolog.

Debugging in dev environment

When using the Symfony dev environment, the system tracks additional metrics for you to be able to debug issues. They include Symfony cache use, and a persistence cache use.

Reducing memory use

Tip

For long-running scripts, see Long-running console commands.

If you are running out of memory and don't need to keep track of cache hits and misses, you can disable persistence cache logging, represented by the setting parameters.ibexa.spi.persistence.cache.persistenceLogger.enableCallLogging. In config_dev.yaml:

1
2
parameters:
    ibexa.spi.persistence.cache.persistenceLogger.enableCallLogging: false

Error logging and rotation

Ibexa DXP uses the Monolog component to log errors, and it has a RotatingFileHandler that allows for file rotation.

According to their documentation, it "logs records to a file and creates one logfile per day. It will also delete files older than $maxFiles".

Monolog's handler can be configured in config/packages/<environment>/monolog.yaml:

1
2
3
4
5
6
7
monolog:
    handlers:
        main:
            type: rotating_file
            max_files: 10
            path: '%kernel.logs_dir%/%kernel.environment%.log'
            level: debug

Using logrotate

Monolog themselves recommend using logrotate instead of doing the rotation in the handler, because it gives better performance.