morimorim / laravel-cache-attr
缓存属性
0.0.4
2024-06-05 13:06 UTC
Requires
- php: >=8.2
- eftec/bladeone: ^4.9
- illuminate/support: ^9|^10|^11
- ray/aop: ^2
Requires (Dev)
- phpunit/phpunit: ^10.4
README
这是Laravel的属性包。支持的属性如下。
参见示例。
安装
composer require morimorim/laravel-cache-attr
用法
指定属性如下。
use Laravel\Cache\Attribute\Cacheable; class ExampleService { #[Cacheable(name: 'ExampleService#heavyProcess', ttl_seconds: 60)] public function heavyProcess(int $sleep) { sleep($sleep); return Carbon::now(); } }