simple cache

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

This package is not auto-updated.

Last update: 2024-11-12 10:28:53 UTC


README

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