Skip to content

Deprecate RedisGraph #177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/NRedisStack/Graph/IGraphCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

namespace NRedisStack
{
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]

[Obsolete("RedisGraph support is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
public interface IGraphCommands
{
/// <summary>
Expand Down Expand Up @@ -140,4 +141,4 @@ public interface IGraphCommands
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
List<List<string>> Slowlog(string graphName);
}
}
}
4 changes: 2 additions & 2 deletions src/NRedisStack/Graph/IGraphCommandsAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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