How to delete a Redis Stream?
Just use the DEL command:
DEL mystream
Pretty straightforward answer, right away from the first search online.
Just execute:
DEL stream_name
XTRIM
only removes the data within the stream, but does not delete the stream itself or any groups associated to it.