summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/del.md
blob: fbb05ec5efd6957200f8572b473c6bc0e31f7fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Removes the specified keys. A key is ignored if it does not exist.

@return

@integer-reply: The number of keys that were removed.

@examples

```cli
SET key1 "Hello"
SET key2 "World"
DEL key1 key2 key3
```