fxcjahid/laravel-eloquent-cache-magic

A lightweight Laravel package for automatic Eloquent query caching with zero-code auto-cache, Redis/Memcached tag support, and automatic cache invalidation

Installs: 21

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/fxcjahid/laravel-eloquent-cache-magic

1.0.0 2025-10-20 06:13 UTC

This package is auto-updated.

Last update: 2025-10-20 06:24:53 UTC


README

Latest Version License PHP Version Laravel Version

A lightweight Laravel package that adds intelligent caching to your Eloquent queries with zero effort. Features include automatic cache invalidation, Redis/Memcached tag support, and flexible caching options!

๐Ÿ“– Read Complete Documentation - Everything you need to know in one place

โœจ Features

  • ๐Ÿš€ Zero Configuration - Works out of the box with sensible defaults
  • ๐ŸŽ‰ Automatic Query Caching - All queries automatically cached without code changes!
  • ๐Ÿท๏ธ Cache Tags Support - Full support for Redis and Memcached tagged caching
  • ๐Ÿ”„ Automatic Cache Invalidation - Cache automatically clears on model create, update, delete
  • ๐Ÿ”ง Flexible API - Multiple ways to configure caching per query
  • ๐ŸŒ Multi-Driver Support - Works with Redis, Memcached, File, Database drivers
  • ๐Ÿงช Fully Tested - Comprehensive test coverage with PHPUnit and Pest
  • ๐Ÿ‘ค Auto User/Guest Tags - Automatic user-specific cache isolation
  • ๐Ÿšซ doNotCache() Method - Disable caching for specific queries (DataTables compatible)
  • ๐ŸŽฏ Helper Functions - Convenient global functions for cache operations

๐Ÿ“‹ Requirements

  • PHP 8.0 - 8.4
  • Laravel 10.0 - 12.0
  • Redis or Memcached (optional, for tag support)

๐Ÿ“ฆ Installation

composer require fxcjahid/laravel-eloquent-cache-magic

Optional: Publish Configuration

php artisan vendor:publish --tag=cache-magic-config

Recommended: Setup Redis for Tag Support

composer require predis/predis
CACHE_DRIVER=redis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

Also update config/database.php

'redis' => [
    'client' => env('REDIS_CLIENT', 'predis'),
]

๐Ÿš€ Quick Start

๐ŸŽ‰ Automatic Query Caching

With auto-cache enabled, ALL your queries are automatically cached without any code changes:

use App\Models\User;
use App\Models\Product;

// These queries are AUTOMATICALLY cached (no ->cache() needed!)
$users = User::all();                          // Auto-cached!
$product = Product::find(1);                   // Auto-cached!
$count = User::where('active', true)->count(); // Auto-cached!

// Bypass auto-cache when you need fresh data
$freshUsers = User::withoutCache()->get();     // Skip cache
$freshProduct = Product::fresh()->find(1);     // Skip cache

// Disable auto-cache for specific models
class Order extends Model {
    use CacheableTrait;
    protected $autoCache = false;  // Disable auto-cache for this model
}

Manual Caching (Traditional Method)

You can still manually control caching with the ->cache() method:

// Manually cache the query
$users = User::where('active', true)->cache()->get();

// Cache for specific duration (in seconds)
$users = User::where('active', true)->cache(3600)->get(); // 1 hour

// Cache with tags (Redis/Memcached only)
$users = User::where('active', true)
    ->cache()
    ->tags(['users', 'active'])
    ->get();

// Clear cache by tags
Cache::tags(['users'])->flush(); // Only clears 'users' tagged cache

Model Integration

use Illuminate\Database\Eloquent\Model;
use Fxcjahid\LaravelEloquentCacheMagic\Traits\CacheableTrait;

class Product extends Model
{
    use CacheableTrait;

    protected $cacheExpiry = 7200; // 2 hours
    protected $cacheTags = ['products'];
}

๐ŸŽฏ Key Features Explained

๐ŸŽ‰ Automatic Query Caching

Enable automatic caching for ALL queries without changing your code:

// In config/cache-magic.php
'auto_cache' => [
    'enabled' => true,              // Enable auto-caching
    'ttl' => 3600,                  // Default 1 hour
    'aggregate_ttl' => 300,         // 5 min for count/sum/avg
    'find_ttl' => 7200,             // 2 hours for find()
],

Once enabled, all your existing queries are automatically cached:

// These are ALL automatically cached now!
User::all();                        // Cached for 1 hour
Product::find($id);                 // Cached for 2 hours
Order::count();                     // Cached for 5 minutes
Invoice::where('paid', true)->get(); // Cached for 1 hour

// Need fresh data? Bypass cache:
User::withoutCache()->all();        // Direct from database
Product::fresh()->find($id);        // Direct from database

Cache Tags - Smart Invalidation

// Cache with tags for smart invalidation
$products = Product::where('category', 'electronics')
    ->cache()
    ->tags(['products', 'electronics'])
    ->get();

// Clear all electronics products
Cache::tags(['electronics'])->flush();

// Clear all products
Cache::tags(['products'])->flush();

Automatic Cache Invalidation

class Product extends Model
{
    use CacheableTrait;

    // Cache automatically clears when model is updated/deleted
    protected $cacheTags = ['products'];

    // Dynamic tags based on attributes
    public function dynamicCacheTags(): array
    {
        return [
            'category:' . $this->category_id,
            'brand:' . $this->brand_id,
        ];
    }
}

User/Guest Isolation

Automatically isolate cache by user or guest session:

// In config/cache-magic.php
'auto_user_tags' => [
    'enabled' => true,
    'guest_fallback' => 'session', // Options: 'session', 'ip', 'unique'
],

๐Ÿ“Š Console Commands

# Clear cache by tags
php artisan cache-magic:clear --tags=products

# Clear cache by model
php artisan cache-magic:clear --model=Product

# Clear all cache
php artisan cache-magic:clear --all

๐Ÿ”ง Helper Functions

// Cache a callback result
$users = cache_remember(['ttl' => 3600, 'tags' => ['users']], function() {
    return User::all();
});

// Clear cache by tags
cache_clear_tags(['products', 'electronics']);

// Clear cache by model
cache_clear_model(Product::class);

// Clear user-specific cache
cache_clear_user($userId);

// Clear guest cache
cache_clear_guest($guestId);

// Check if cache supports tags
if (cache_supports_tags()) {
    // Use tag-based caching
}

๐Ÿ“– Complete Documentation

Read the complete documentation for comprehensive details on:

  • โœ… Installation and configuration
  • โœ… All query methods and parameters
  • โœ… Cache tags explained with examples
  • โœ… Model integration guide
  • โœ… Console commands usage
  • โœ… Helper functions
  • โœ… Advanced features
  • โœ… Troubleshooting guide

๐Ÿงช Testing

# Run tests
vendor/bin/pest

# With coverage
vendor/bin/pest --coverage

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

๐Ÿ“ License

This package is open-sourced software licensed under the MIT license.

๐Ÿ‘จโ€๐Ÿ’ป Author

FXC Jahid

๐ŸŒŸ Support

If you find this package helpful, please give it a โญ on GitHub!