cache_manager

The cache manager is the primary interface to invalidate caches. It is enabled by default if a Proxy Client is configured or when you specify the custom_proxy_client field.

# app/config/config.yml
fos_http_cache:
    cache_manager:
        enabled: auto

enabled

type: enum options: auto, true, false

Whether the cache manager service should be enabled. By default, it is enabled if a proxy client is configured. It can not be enabled without a proxy client.

custom_proxy_client

type: string

Instead of configuring a Proxy Client, you can define your own service that implements FOS\HttpCache\ProxyClient.

# app/config/config.yml
fos_http_cache:
    cache_manager:
        custom_proxy_client: acme.caching.proxy_client

When you specify a custom proxy client, the bundle does not know about the capabilities of the client. The generate_url_type defaults to absolute URL and tag support is only active if explicitly enabled.