Skip to content

Commit a31172e

Browse files
shacharPashchayim
andauthored
Deprecate RedisGraph (#177)
Co-authored-by: Chayim I. Kirshen <c@kirshen.com> Co-authored-by: Chayim <chayim@users.noreply.github.com>
1 parent d554cd4 commit a31172e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/NRedisStack/Graph/IGraphCommands.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
namespace NRedisStack
55
{
6-
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]
6+
7+
[Obsolete("RedisGraph support is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
78
public interface IGraphCommands
89
{
910
/// <summary>
@@ -140,4 +141,4 @@ public interface IGraphCommands
140141
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
141142
List<List<string>> Slowlog(string graphName);
142143
}
143-
}
144+
}

src/NRedisStack/Graph/IGraphCommandsAsync.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace NRedisStack
55
{
6-
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]
6+
[Obsolete("RedisGraph support is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
77
public interface IGraphCommandsAsync
88
{
99
/// <summary>
@@ -140,4 +140,4 @@ public interface IGraphCommandsAsync
140140
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
141141
Task<List<List<string>>> SlowlogAsync(string graphName);
142142
}
143-
}
143+
}

0 commit comments

Comments
 (0)