企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
``` //获取缓存组件 $cache=\Yii::$app->cache; //add(),set()第三人参数为设置缓存的时间 单位 秒,时间到后,缓存就消失,返回false //$cache->add('key4','this is cache time',15); //$cache->set('key4','this is cache time',15); $data=$cache->get('key4'); var_dump($data); echo '<br>'; ```