Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ardalis/redisdotnethelloworld
- Owner: ardalis
- License: mit
- Created: 2024-02-11T18:32:02.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-11T19:02:47.000Z (9 months ago)
- Last Synced: 2024-05-01T22:58:28.216Z (6 months ago)
- Language: C#
- Size: 7.81 KB
- Stars: 5
- 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.