gianfriaur / laravel-fast-cache
Laravel Fast Cache
v1.0.0
2023-08-08 18:43 UTC
Requires
- php: ^8.1
- ext-pdo: *
- laravel/framework: v10.*
Requires (Dev)
- nunomaduro/collision: ^7.0
- orchestra/testbench: ^8.0
This package is not auto-updated.
Last update: 2024-12-12 00:21:23 UTC
README
⚽️ Goal
this library allows you to quickly create new driver caches for your packages with just a few lines of configuration
✨ Features
- driver self-registration service
- New cache store FileArrayStore
🤙🏼 Quickstart
1) Install The package
composer require gianfriaur/laravel-fast-cache
currently the library does not include additional configurations
How to use
1) Create your service driver interface
use Gianfriaur\FastCache\Service\CacheService\CacheServiceInterface; interface MyLibraryCacheServiceInterface extends CacheServiceInterface {}
2) register your driver
use Gianfriaur\FastCache\Service\CacheServiceRegister\DefaultCacheServiceRegister; use Gianfriaur\FastCache\Service\CacheService\DefaultCacheService; use Gianfriaur\FastCache\Cache\Stores\FileArrayStore; class ServicesProvider extends ServiceProvider { public function register(): void { DefaultCacheServiceRegister::registerCacheService( $this->app, MyLibraryCacheServiceInterface::class, DefaultCacheService::class [ 'cache_file' => 'cache/my_library_cache.php', 'file_env_override' => 'MY_LIBRARY_CACHE_FILE', 'store' => FileArrayStore::class, 'driver_name' => 'my-library-cache' ], 'my_library.cache_service', ); } }
3) use your cache
The cache interfaces like any laravel cache, read the official laravel guide
// if true remember only for debug else remember forever $is_volatile_memory = (app()->hasDebugModeEnabled() || !App::isProduction()) === true; $my_data = $is_volatile_memory ? Cache::store('my-library-cache')->remember('key_name', 1,fn() => 'key_value') : Cache::store('my-library-cache')->rememberForever( 'key_name', fn() => 'key_value')
4) see your cache
a new file was added 'bootstrap/cache/my_library_cache.php'
📝 Next releases
- Add the ability to dynamically configure services
🎉 License
The Laravel Hyper Controller package is licensed under the terms of the MIT license and is available for free.