Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
You have a list called "key"? That sounds confusingly hilarious. You could write "Who's on First?" with names like that! – David James Aug 13 '12 at 0:44
@DavidJames: Consider it another way of spelling "foo." I'm following the convention used in Redis's own documentation: redis.io/commands – Paul A Jungwirth Aug 13 '12 at 19:59
Yes, in redis, all data structures are keys. That doesn't mean 'key' is useful in an example. Quite the opposite, I think. Using mylist would 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

1 Answer

up vote 13 down vote accepted

Delete the key, and that will clear all items. Not having the list at all is similar to not having any items in it. Redis will not throw any exceptions when you try to access a non-existent key.

DEL key

Here's some console logs.

redis> KEYS *
(empty list or set)
redis> LPUSH names John
(integer) 1
redis> LPUSH names Mary
(integer) 2
redis> LPUSH names Alice
(integer) 3
redis> LLEN names
(integer) 3
redis> LRANGE names 0 2
1) "Alice"
2) "Mary"
3) "John"
redis> DEL names
(integer) 1
redis> LLEN names
(integer) 0
redis> LRANGE names 0 2
(empty list or set)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.