1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-25 00:40:59 +03:00

update docs

This commit is contained in:
leibale
2021-11-24 21:17:55 -05:00
parent b80bbc3eba
commit 4ff9a05098
6 changed files with 322 additions and 324 deletions

View File

@@ -1,6 +1,6 @@
# @node-redis/json
This package provides support for the [RedisJSON](https://redisjson.io) module, which adds JSON as a native data type to Redis. It extends the [Node Redis client](https://) to include functions for each of the RedisJSON commands.
This package provides support for the [RedisJSON](https://redisjson.io) module, which adds JSON as a native data type to Redis. It extends the [Node Redis client](https://github.com/redis/node-redis) to include functions for each of the RedisJSON commands.
To use these extra commands, your Redis server must have the RedisJSON module installed.
@@ -32,7 +32,7 @@ await client.json.set('noderedis:jsondata', '$', {
species: 'fish',
age: 2,
isMammal: false
}
}
]
});
```