redis
Installation
SKILL.md
Redis Skill
Sorcha uses Redis via StackExchange.Redis for caching, token revocation tracking, rate limiting, and distributed coordination. All services share a single Redis instance managed by .NET Aspire with circuit breaker resilience.
Quick Start
Aspire Configuration
// src/Apps/Sorcha.AppHost/AppHost.cs
var redis = builder.AddRedis("redis")
.WithRedisCommander();
// Reference from any service
var blueprintService = builder.AddProject<Projects.Sorcha_Blueprint_Service>()
.WithReference(redis);
Cache Store Usage
Related skills