Skip to content

Commit 4871169

Browse files
uglideCopilot
andauthored
Fix links and update Redis version support (#442)
* Fix links and update Redis version support * Update README.md Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
1 parent 4619825 commit 4871169

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ This project builds on [StackExchange.Redis](https://github.com/StackExchange/St
1414

1515
## How do I Redis?
1616

17-
[Learn for free at Redis University](https://university.redis.com/)
17+
[Learn for free at Redis University](https://university.redis.io/academy/)
1818

19-
[Build faster with the Redis Launchpad](https://launchpad.redis.com/)
19+
[Try the Redis Cloud](https://redis.io/try-free/)
2020

21-
[Try the Redis Cloud](https://redis.com/try-free/)
21+
[Dive in developer tutorials](https://redis.io/learn/)
2222

23-
[Dive in developer tutorials](https://developer.redis.com/)
23+
[Join the Redis community](https://redis.io/community/)
2424

25-
[Join the Redis community](https://redis.com/community/)
26-
27-
[Work at Redis](https://redis.com/company/careers/jobs/)
25+
[Work at Redis](https://redis.io/careers/jobs/)
2826

2927
## API
3028

@@ -58,18 +56,20 @@ dotnet add package NRedisStack
5856

5957
### Supported Redis versions
6058

61-
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).
59+
The most recent version of this library supports Redis version
60+
[7.2](https://github.com/redis/redis/blob/7.2/00-RELEASENOTES),
61+
[7.4](https://github.com/redis/redis/blob/7.4/00-RELEASENOTES),
62+
[8.0](https://github.com/redis/redis/blob/8.0/00-RELEASENOTES) and
63+
[8.2](https://github.com/redis/redis/blob/8.2/00-RELEASENOTES).
6264

6365
### Starting Redis
6466

6567
Before writing any code, you'll need a Redis instance with the appropriate Redis modules. The quickest way to get this is with Docker:
6668

6769
```sh
68-
docker run -p 6379:6379 --name redis-stack redis/redis-stack:latest
70+
docker run -p 6379:6379 --name redis redis:latest
6971
```
7072

71-
This launches [Redis Stack](https://redis.io/docs/stack/), an extension of Redis that adds modern data structures to Redis.
72-
7373
Now, you need to connect to Redis, exactly the same way you do it in [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis):
7474
```csharp
7575
using NRedisStack;
@@ -89,7 +89,6 @@ TdigestCommands tdigest = db.TDIGEST();
8989
SearchCommands ft = db.FT();
9090
JsonCommands json = db.JSON();
9191
TimeSeriesCommands ts = db.TS();
92-
GraphCommands graph = db.GRAPH(); // If Redis version is less than 7.2 and NRedisStack version is less than 0.13.x
9392
```
9493
Then, that variable will allow you to call all the commands of that module.
9594

0 commit comments

Comments
 (0)