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