Skip to content

Commit 61a245d

Browse files
authoredSep 10, 2023
Update README (#182)
* update 7.0 to 7.2 in the README.md * update README about graph EOL * add RedisGraph to wordlist
1 parent 627c89b commit 61a245d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎.github/wordlist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ OSS
1717
oss
1818
pre
1919
redis
20+
RedisGraph
2021
StackExchange
2122
TimeSeries
2223
triaging

‎README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ You can use Redis OSS commands in the same way as you use them in [StackExchange
2121

2222
### Stack commands
2323
Each module has a command class with its own commands.
24-
The supported modules are [Search](https://redis.io/commands/?group=search), [JSON](https://redis.io/commands/?group=json), [Graph](https://redis.io/commands/?group=graph), [TimeSeries](https://redis.io/commands/?group=timeseries), [Bloom Filter](https://redis.io/commands/?group=bf), [Cuckoo Filter](https://redis.io/commands/?group=cf), [T-Digest](https://redis.io/commands/?group=tdigest), [Count-min Sketch](https://redis.io/commands/?group=cms), and [Top-K](https://redis.io/commands/?group=topk).
24+
The supported modules are [Search](https://redis.io/commands/?group=search), [JSON](https://redis.io/commands/?group=json), [TimeSeries](https://redis.io/commands/?group=timeseries), [Bloom Filter](https://redis.io/commands/?group=bf), [Cuckoo Filter](https://redis.io/commands/?group=cf), [T-Digest](https://redis.io/commands/?group=tdigest), [Count-min Sketch](https://redis.io/commands/?group=cms), and [Top-K](https://redis.io/commands/?group=topk).
25+
26+
**Note:** RedisGraph support has been deprecated starting from Redis Stack version 7.2. For more information, please refer to [this blog post](https://redis.com/blog/redisgraph-eol/).
27+
2528

2629
# Usage
2730

@@ -37,7 +40,7 @@ dotnet add package NRedisStack
3740

3841
### Supported Redis versions
3942

40-
The most recent version of this library supports Redis version [6.2](https://github.com/redis/redis/blob/6.2/00-RELEASENOTES), [7.0](https://github.com/redis/redis/blob/7.0/00-RELEASENOTES).
43+
The most recent version of this library supports Redis version [6.2](https://github.com/redis/redis/blob/6.2/00-RELEASENOTES), [7.2](https://github.com/redis/redis/blob/7.2/00-RELEASENOTES).
4144

4245
### Starting Redis
4346

@@ -63,12 +66,12 @@ Now you can create a variable from any type of module in the following way:
6366
BloomCommands bf = db.BF();
6467
CuckooCommands cf = db.CF();
6568
CmsCommands cms = db.CMS();
66-
GraphCommands graph = db.GRAPH();
6769
TopKCommands topk = db.TOPK();
6870
TdigestCommands tdigest = db.TDIGEST();
6971
SearchCommands ft = db.FT();
7072
JsonCommands json = db.JSON();
7173
TimeSeriesCommands ts = db.TS();
74+
GraphCommands graph = db.GRAPH(); // If Redis version is less than 7.2
7275
```
7376
Then, that variable will allow you to call all the commands of that module.
7477

0 commit comments

Comments
 (0)
Please sign in to comment.