redis-caching-queues

Configure Redis caching and queues for Laravel and Python applications.

2|1|Updated Jan 20, 2026
One-click install
npx skills add https://github.com/sraloff/gravityboots --skill redis-caching-queues
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: redis-caching-queues
Source: https://github.com/sraloff/gravityboots/tree/main/.agent/skills/redis-caching-queues
Command: npx skills add https://github.com/sraloff/gravityboots --skill redis-caching-queues

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Redis caching and queuing configurations are often scattered across projects, making it hard to standardize caching and background processing. This skill consolidates best practices for Redis-based caching, eviction policies, and task queues.

Core Features & Use Cases

  • Caching strategies: TTLs, namespaced keys, and sensible invalidation to prevent memory bloat.
  • Queues: Integrations with Laravel Horizon, Python Celery, and RQ for reliable background processing.
  • Persistence and durability: Guidance on maxmemory, eviction policies, and RDB/AOF setups for durability.

Quick Start

Implement a Redis-backed cache with TTL keys and a Horizon-managed queue in your project.

Frequently Asked Questions about redis-caching-queues

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

FAQPage Schema
How do I configure Redis maxmemory and eviction policies for caching?

Configure Redis maxmemory and eviction policies to manage memory allocation and prevent bloat. Standardized key naming schemes and TTLs ensure sensible cache invalidation and reliable in-memory performance for web services.

What's the best way to set up Redis persistence and durability for background queues?

Redis persistence and durability for background queues rely on proper RDB or AOF setups. Configuring these persistence mechanisms ensures queued tasks in Laravel Horizon, Celery, or RQ survive restarts and process reliably.

Does this Redis caching approach work with both Laravel Horizon and Python Celery?

Yes, this Redis caching approach works with Laravel Horizon and Python Celery. It provides standardized queue configurations and caching strategies applicable across both Laravel and Python applications for background job processing.

How do I prevent Redis memory bloat when using namespaced caching keys?

Prevent Redis memory bloat by applying TTLs to namespaced caching keys and enforcing maxmemory limits with appropriate eviction policies. This combination ensures sensible cache invalidation and controlled memory usage.

When do I need standardized Redis key naming schemes for task queues?

Standardized Redis key naming schemes are needed when managing task queues across distributed systems. Consistent naming prevents key collision and ensures reliable background processing across Laravel Horizon, Celery, and RQ workloads.

Can I use RQ with Redis for background job processing and caching simultaneously?

Yes, you can use RQ with Redis for background job processing and caching simultaneously. Proper configuration separates caching strategies from queue workloads using namespaced keys and distinct persistence settings.