Suppose you have a LIST datatype in Redis. How do you delete all its entries? I've tried this already:
LTRIM key 0 0
LTRIM key -1 0
Both of those leave the first element. This will leave all the elements:
LTRIM key 0 -1
I don't see a separate command to completely empty a list.

mylistwould make your question clearer. For example, redis.io/commands/ltrim writes:LTRIM mylist 1 -1. The page you cite is a command reference and should not be considered a "convention" for making good examples. – David James Aug 13 '12 at 20:41