# cache **Repository Path**: luguohuakai/cache ## Basic Information - **Project Name**: cache - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-11 - **Last Updated**: 2023-11-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: Cache ## README # cache * 用法举例 ```php // 实例化 $cache = new \luguohuakai\cache\Cache(); // 设置值 $cache->set('key','value', 60); // 获取值 $cache->get('key'); ```