simple cache

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Maintainers

Details

gitee.com/luguohuakai/cache

Installs: 30

Dependents: 1

Suggesters: 0

Security: 0

pkg:composer/luguohuakai/cache

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

This package is not auto-updated.

Last update: 2025-09-02 14:05:29 UTC


README

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