Symfony 5 – Clear cache contract command

use SymfonyContractsCacheItemInterface;
use SymfonyComponentCacheAdapterFilesystemAdapter;

$cache = new FilesystemAdapter();

$value = $cache->get('my_cache_key', function (ItemInterface $item) {
    $item->expiresAfter(3600);

    // ... do some HTTP request or heavy computations
    $computedValue = 'foobar';

    return $computedValue;
});

I use Symfony 5.4 and the cache contracts on an application and some cache expirations are quite long. My problem is that some values need to be changed and to do it properly, I would need to be able to purge the cache with a command line on my production server to be sure to have correct data.
I can make a custom command ex: php bin/console app:cache:custom-clear that invalidates some tags but I’m surprised I don’t have a native command to do this cache purge operation globally.

It may be that it’s simple and I didn’t understand anything but I don’t see much in the doc on this point.
If anyone has a lead, I’m interested.