vigstudio/laravel-eloquent-query-cache
Add query-level caching back to Eloquent with a simple remember-like API. Cache results from database queries, reduce repeated hits, and integrate with Laravel’s cache stores for faster reads and configurable invalidation.
/products?category=X).User::where(...)->get() called >10x/minute).laravel-cache + event listeners).with() or nested eager loading optimally).For Executives: "This package lets us cache database query results in Laravel with minimal effort—think of it as a ‘turbo boost’ for read-heavy features. For example, if our product catalog API is queried 10,000 times/day, caching could cut database load by 50%, saving costs and speeding up pages. It’s a low-risk way to improve performance without hiring caching specialists or overhauling our stack."
For Engineers:
*"The vigstudio/laravel-eloquent-query-cache package adds a simple cache() method to Eloquent queries (e.g., User::where(...)->cache(60)->get()). It supports Laravel’s built-in cache drivers (file, database, Redis) and is ideal for:
cache(300) for reports, cache(5) for live data).How can I help you explore Laravel packages today?