tinson / memory-cache
PHP 内存缓存库
v1.0.0
2019-12-18 03:01 UTC
Requires
- php: >=5.6
- nesbot/carbon: ~1.20
- psr/simple-cache: ~1.0.1
Requires (Dev)
- phpunit/phpunit: 5.7.27
This package is not auto-updated.
Last update: 2024-09-20 02:27:24 UTC
README
PHP 内存缓存库实现了 CacheInterface PSR-16
快速开始
# New an cache instance
# 构建一个实例
$cache = new \MemoryCache\Cache();
$cache->set($key, $value, $ttle);
$cache->get($key);