Hi,
I’ve updated from v7 to v8 and moved to docker containers.
I’m not sure how to clear my query queues now (what used to be redis-cli flushall).

Any help would be appreciated,
Thanks

Hey tomtom,

flushall should still do the trick. If you used to execute it directly on your Redis, you would need to execute it from the Dockerized Redis now (docker-compose exec redis redis-cli)

Thanks a lot - it works!

(I was trying “docker-compose --rm redis redis-cli flushall” :slight_smile: guess that was my issue)