prowebcraft/yii2-lazy-cache

懒加载缓存函数

安装: 722

依赖: 0

推荐者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:yii2-extension

dev-main 2022-05-23 13:06 UTC

This package is auto-updated.

Last update: 2024-09-23 18:00:30 UTC


README

懒加载缓存函数

用法

特性附加到您的类中

<?php

class HeavyJob {
    
    use \prowebcraft\yii2lazycache\Lazy;

}

使用懒函数包装大量数据

$rocketToMarsTrajectory = $this->lazyWithCache('mars.trajectory', function() {
    // this function will be called once a day
    $trajectory = null;
    // heavy calculation here
    return $trajectory;
});