summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/del.md
blob: d5fcbaced51ee1c1f6846ca9c1067bcc534f1212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
```