https://github.com/ardalis/redisdotnethelloworld
Getting started with Redis in dotnet
https://github.com/ardalis/redisdotnethelloworld
Last synced: 3 months ago
JSON representation
Getting started with Redis in dotnet
- Host: GitHub
- URL: https://github.com/ardalis/redisdotnethelloworld
- Owner: ardalis
- License: mit
- Created: 2024-02-11T18:32:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-11T19:02:47.000Z (over 1 year ago)
- Last Synced: 2025-03-21T03:07:06.406Z (3 months ago)
- Language: C#
- Size: 7.81 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.