简单的缓存

维护者

详细信息

gitee.com/luguohuakai/cache

v1.0.1 2023-11-11 05:33 UTC

This package is not auto-updated.

Last update: 2024-10-01 10:03:26 UTC


README

  • 用法示例
// 实例化
$cache = new \luguohuakai\cache\Cache();
// 设置值
$cache->set('key','value', 60);
// 获取值
$cache->get('key');