1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

use set example instead

This commit is contained in:
Kien Pham
2017-04-26 18:29:27 -07:00
parent d4a332aea4
commit a8ea06314f

View File

@@ -117,11 +117,11 @@ Please be aware that sending null, undefined and Boolean values will result in t
# Redis Commands # Redis Commands
This library is a 1 to 1 mapping to [Redis commands](https://redis.io/commands). It is not a cache library so please refer to Redis commands page for full usage details. This library is a 1 to 1 mapping to [Redis commands](https://redis.io/commands). It is not a cache library so please refer to Redis commands page for full usage details.
Example setting key to auto expire using [setex command](https://redis.io/commands/setex) Example setting key to auto expire using [SET command](https://redis.io/commands/set)
```js ```js
// this key will expires after 10 seconds // this key will expires after 10 seconds
client.setex('myKey', 10, 'Awesome value!'); client.set('key', 'value!', 'EX', 10);
``` ```