/dotnet-redis-examples

Some basic examples for using .NET and Redis

Primary LanguageC#MIT LicenseMIT

Dotnet Redis Examples

Welcome this repo shows some examples as to how to interact with the different data structures in .NET, open the .sln file and look at BasicRedisCommands/program.cs for some examples of how to interact with the different redis commands

Spin up Redis

To run these examples, you will need to be using Redis Stack. The easiest way to spin up a quick instance of Redis Stack is with docker:

docker run -p 6379:6379 -p 8001:8001 redis/redis-stack

Helpful Links