Delete all Redis keys matching a pattern

# KEYS walks the whole keyspace and blocks every other client while it does
redis-cli KEYS 'cache:catalogue:*' | xargs -n 100 redis-cli DEL