Skip to content

Commit e5fafd3

Browse files
authored
Drop RedisGraph support (#394)
drop Graph support
1 parent a8cbc49 commit e5fafd3

29 files changed

+2
-4256
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Each module has a command class with its own commands.
4141
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).
4242

4343
**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/).
44+
**IMPORTANT:** NRedisStack will end the support for Graph functionalities with version 0.13.x
4445

4546
# Usage
4647

@@ -87,7 +88,7 @@ TdigestCommands tdigest = db.TDIGEST();
8788
SearchCommands ft = db.FT();
8889
JsonCommands json = db.JSON();
8990
TimeSeriesCommands ts = db.TS();
90-
GraphCommands graph = db.GRAPH(); // If Redis version is less than 7.2
91+
GraphCommands graph = db.GRAPH(); // If Redis version is less than 7.2 and NRedisStack version is less than 0.13.x
9192
```
9293
Then, that variable will allow you to call all the commands of that module.
9394

src/NRedisStack/Graph/DataTypes/Edge.cs

-96
This file was deleted.

src/NRedisStack/Graph/DataTypes/GraphEntity.cs

-72
This file was deleted.

src/NRedisStack/Graph/DataTypes/Node.cs

-84
This file was deleted.

src/NRedisStack/Graph/DataTypes/Path.cs

-87
This file was deleted.

0 commit comments

Comments
 (0)