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
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)