Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ardalis/redisdotnethelloworld

Getting started with Redis in dotnet
https://github.com/ardalis/redisdotnethelloworld

Last synced: 3 days ago
JSON representation

Getting started with Redis in dotnet

Awesome Lists containing this project

README

        

# RedisDotNetHelloWorld

Getting started with Redis in dotnet.

## Running the Sample

1. Clone the repository.
2. Run this command to start Redis locally:

```powershell
docker run --name my-redis -p 6379:6379 -d redis
```
This runs Redis locally on port 6379 in daemon mode. It will keep running until you stop it.

3. Run the console app.