This blog post explained a change that was reverted before the release of Symfony 3.3. That's why the original blog post content has been removed. You can keep using the cache:clear and cache:warmup commands as usual:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# warmup the existing cache but don't clear it
$ ./bin/console cache:warmup (--env=prod|dev)
# in modern Symfony apps:
# APP_ENV=prod|dev ./bin/console cache:warmup

# clear the existing cache and warm it up
$ ./bin/console cache:clear (--env=prod|dev)
# in modern Symfony apps:
# APP_ENV=prod|dev ./bin/console cache:clear

# clear the existing cache but don't warm it up
$ ./bin/console cache:clear --no-warmup (--env=prod|dev)
# in modern Symfony apps:
# APP_ENV=prod|dev ./bin/console cache:clear --no-warmup
Published in #Living on the edge