From be7d2b4f0a88e17bf43d395bc42522c31c3a68e1 Mon Sep 17 00:00:00 2001 From: shacharPash Date: Thu, 7 Sep 2023 16:45:56 +0300 Subject: [PATCH 1/3] update 7.0 to 7.2 in the README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4df53d5c..829ec317 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ dotnet add package NRedisStack ### Supported Redis versions -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). +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). ### Starting Redis From e11650b215a4e129d6838f9ab5c6bb2823936a5a Mon Sep 17 00:00:00 2001 From: shacharPash Date: Thu, 7 Sep 2023 17:09:27 +0300 Subject: [PATCH 2/3] update README about graph EOL --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 829ec317..090aecab 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,10 @@ You can use Redis OSS commands in the same way as you use them in [StackExchange ### Stack commands Each module has a command class with its own commands. -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). +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). + +**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/). + # Usage @@ -63,12 +66,12 @@ Now you can create a variable from any type of module in the following way: BloomCommands bf = db.BF(); CuckooCommands cf = db.CF(); CmsCommands cms = db.CMS(); -GraphCommands graph = db.GRAPH(); TopKCommands topk = db.TOPK(); TdigestCommands tdigest = db.TDIGEST(); SearchCommands ft = db.FT(); JsonCommands json = db.JSON(); TimeSeriesCommands ts = db.TS(); +GraphCommands graph = db.GRAPH(); // If Redis version is less than 7.2 ``` Then, that variable will allow you to call all the commands of that module. From 7312c3291b4427288b398b41e12a8cb73ee00194 Mon Sep 17 00:00:00 2001 From: shacharPash Date: Thu, 7 Sep 2023 17:13:11 +0300 Subject: [PATCH 3/3] add RedisGraph to wordlist --- .github/wordlist.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/wordlist.txt b/.github/wordlist.txt index 2f52fbd0..21191c00 100644 --- a/.github/wordlist.txt +++ b/.github/wordlist.txt @@ -17,6 +17,7 @@ OSS oss pre redis +RedisGraph StackExchange TimeSeries triaging