Yes, multiple keys can be deleted in Redis using the DEL command. You can specify multiple keys as arguments to the command. Here’s an example:
DEL key1 key2 key3
This command will delete key1, key2, and key3 from the Redis database. If any of the specified keys do not exist, Redis will simply ignore them and continue deleting the others.
