Skip to content

Commit

Permalink
drop Graph support
Browse files Browse the repository at this point in the history
  • Loading branch information
atakavci committed Jan 31, 2025
1 parent 3ec82af commit c54cb89
Show file tree
Hide file tree
Showing 29 changed files with 2 additions and 4,256 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ 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), [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/).
**IMPORTANT:** NRedisStack will end the support for Graph functionalities with version 0.13.x

# Usage

Expand Down Expand Up @@ -87,7 +88,7 @@ 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
GraphCommands graph = db.GRAPH(); // If Redis version is less than 7.2 and NRedisStack version is less than 0.13.x
```
Then, that variable will allow you to call all the commands of that module.

Expand Down
96 changes: 0 additions & 96 deletions src/NRedisStack/Graph/DataTypes/Edge.cs

This file was deleted.

72 changes: 0 additions & 72 deletions src/NRedisStack/Graph/DataTypes/GraphEntity.cs

This file was deleted.

84 changes: 0 additions & 84 deletions src/NRedisStack/Graph/DataTypes/Node.cs

This file was deleted.

87 changes: 0 additions & 87 deletions src/NRedisStack/Graph/DataTypes/Path.cs

This file was deleted.

Loading

0 comments on commit c54cb89

Please sign in to comment.