DEL key [key ...]

Removes the specified keys. A key is ignored if it does not exist.

*Return value

Integer reply: The number of keys that were removed.

*Examples

redis>  SET key1 "Hello"
"OK"
redis>  SET key2 "World"
"OK"
redis>  DEL key1 key2 key3
(integer) 2
redis>