morimorim/laravel-cache-attr

0.0.4 2024-06-05 13:06 UTC

This package is auto-updated.

Last update: 2024-09-05 13:40:14 UTC


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();
    }
}