Empty/delete a set in Redis?

2019-02-01 16:02发布

Maybe I'm just blind, but I don't see an explicit set command in Redis for emptying an existing set (without emptying the entire database). For the time being, I'm doing a set difference on the set with itself and storing it back into itself:

redis> SMEMBERS metasyn
1) "foo"
2) "bar"
redis> SDIFFSTORE metasyn metasyn metasyn
(integer) 0
redis> SMEMBERS metasyn
(empty list or set)

But that looks a little silly... is there a better way to do this?

标签: set redis
1条回答
霸刀☆藐视天下
2楼-- · 2019-02-01 16:03

You could delete the set altogether with DEL.

DEL metasyn

From redis console,

redis> SMEMBERS metasyn
1) "foo"
2) "bar"
redis> DEL metasyn
(integer) 1
redis> SMEMBERS metasyn
(empty list or set)
查看更多
登录 后发表回答