You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,10 @@ You can use Redis OSS commands in the same way as you use them in [StackExchange
21
21
22
22
### Stack commands
23
23
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
+
25
28
26
29
# Usage
27
30
@@ -37,7 +40,7 @@ dotnet add package NRedisStack
37
40
38
41
### Supported Redis versions
39
42
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).
41
44
42
45
### Starting Redis
43
46
@@ -63,12 +66,12 @@ Now you can create a variable from any type of module in the following way:
63
66
BloomCommandsbf=db.BF();
64
67
CuckooCommandscf=db.CF();
65
68
CmsCommandscms=db.CMS();
66
-
GraphCommandsgraph=db.GRAPH();
67
69
TopKCommandstopk=db.TOPK();
68
70
TdigestCommandstdigest=db.TDIGEST();
69
71
SearchCommandsft=db.FT();
70
72
JsonCommandsjson=db.JSON();
71
73
TimeSeriesCommandsts=db.TS();
74
+
GraphCommandsgraph=db.GRAPH(); // If Redis version is less than 7.2
72
75
```
73
76
Then, that variable will allow you to call all the commands of that module.
0 commit comments