1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +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 @@
# Changelog
## v4.0.0
## v4.0.0 - 24 Nov, 2021
This version is a major change and refactor, adding modern JavaScript capabilities and multiple breaking changes. See the [migration guide](../../docs/v3-to-v4.md) for tips on how to upgrade.
@@ -17,10 +17,10 @@ This version is a major change and refactor, adding modern JavaScript capabiliti
- Added support for Promises
- Added built-in TypeScript declaration files enabling code completion
- Added support for [clustering](../../.github/README.md#cluster)
- Added idiomatic arguments and responses to [Redis commands](../../.github/README.md#redis-commands)
- Added full support for [Lua Scripts](../../.github/README.md#lua-scripts)
- Added support for [SCAN iterators](../../.github/README.md#scan-iterator)
- Added support for [clustering](../../README.md#cluster)
- Added idiomatic arguments and responses to [Redis commands](../../README.md#redis-commands)
- Added full support for [Lua Scripts](../../README.md#lua-scripts)
- Added support for [SCAN iterators](../../README.md#scan-iterator)
- Added the ability to extend Node Redis with Redis Module commands
## v3.1.2

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
}
}
]
});
```