redis

Plan, implement, and optimize Redis solutions with structured guidance on data structures and commands.

Updated Feb 27, 2026
One-click install
npx skills add https://github.com/cooker/wx-apartment-ledger --skill redis-cooker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: redis
Source: https://github.com/cooker/wx-apartment-ledger/tree/main/.agents/skills/redis
Command: npx skills add https://github.com/cooker/wx-apartment-ledger --skill redis-cooker

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Redis guidance and best practices for using Redis across data structures, caching patterns, pub/sub, persistence, and clustering to help you design and optimize Redis-based solutions.

Core Features & Use Cases

  • Reference Guide: In-depth explanations of Redis data structures (strings, hashes, lists, sets, sorted sets, streams) and standard commands.
  • Architecture & Patterns: Guidance on caching strategies, persistence models, replication, and clustering configurations.
  • Use Case Scenarios: Design Redis-backed caches, message buses, priority queues, and real-time analytics data stores.

Quick Start

Describe your Redis use case and I will provide structured guidance on data structures, commands, and patterns.

Frequently Asked Questions about redis

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose the right Redis data structure for my caching use case?

To implement effective Redis caching, select data structures based on access patterns: strings for simple key-value, hashes for objects, and sorted sets for ranked data. The skill provides structured guidance on matching data structures to specific web caching and real-time analytics scenarios.

What is the best way to configure Redis persistence and clustering for high availability?

Configuring Redis persistence and clustering for high availability involves choosing between standalone, sentinel, and cluster deployment modes. The skill guides you through selecting persistence models and replication configurations to meet specific reliability and performance goals.

Can I use Redis pub/sub for building message queues and real-time analytics?

Yes, you can use Redis pub/sub to design message buses, priority queues, and real-time analytics data stores. The skill provides architectural patterns for implementing pub/sub messaging and structuring data streams across typical application scenarios.

When should I use Redis standalone versus sentinel or cluster deployment?

You should choose Redis standalone for simple setups, sentinel for automatic failover and high availability, and cluster for horizontal scaling and partitioning. The skill helps you evaluate deployment modes to meet your specific reliability and performance requirements.

How does Redis handle different caching strategies and persistence models?

Redis handles caching strategies and persistence models by offering architectural guidance on combining in-memory data structures with configurable persistence. The skill explains how to balance performance and durability using standard commands and replication configurations.