project configuration : symfony 5.
I configured my cache to use redis, in config\packages\cache.yml
like this
framework:
cache:
prefix_seed: myAppPrefix_
app: cache.adapter.redis
system: cache.adapter.filesystem
default_redis_provider: '%env(REDIS_URL)%'
When i run php bin/console cache:clear --env=dev
, redis keys are not deleted and they are not expired.
The cache:clear
command is not supposed to remove or make the keys expired ?
I can i delete all my keys, matching my App prefix ?
Thanks for your help