directorytree/activeredis
Active Record-style Redis hash models for Laravel. Create, update, delete, expire, and query Redis-backed records with an Eloquent-like API, including model identifiers, timestamps, casts, events, connections, chunking, searching, and testing support.
Visit models in the example).connection property) to avoid key collisions.searchable attributes) to Redis-backed models without a separate search engine.create with UUID generation, update with timestamps) without manual Redis scripting.For Executives: "ActiveRedis lets us store high-velocity data (e.g., user visits, feature flags) in Redis with the simplicity of Laravel’s Eloquent. This reduces latency for read-heavy workloads by 10–100x vs. SQL, cuts dev time by reusing familiar ORM patterns, and enables automatic expiry for compliance (e.g., GDPR). For example, we could track real-time analytics without bloating our PostgreSQL database. The MIT license and active maintenance make it a low-risk choice."
For Engineering: *"This package gives us:
Visit::find($id), Visit::create([...]))—no raw Redis commands.Visit::where('ip', '192.168.1.1')) without a separate search layer.How can I help you explore Laravel packages today?