summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/touch.md
blob: eee336583854af566482eb372db63f3abdc77479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Alters the last access time of a key(s). A key is ignored if it does not exist.

@return

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

@examples

```cli
SET key1 "Hello"
SET key2 "World"
TOUCH key1 key2
```