ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# Cache 跨进程的高速内存缓存 这是在控制器中的使用方法 ```php public function http_map_add() { $cache = Cache::getCache('TestCache'); $cache->addMap('123'); $this->http_output->end($cache->getAllMap()); } ``` 其中TestCache是个Task类 ```php /** * Class TestCache * @package Server\Tasks */ class TestCache extends Task { public $map = []; public function addMap($value) { $this->map[] = $value; return true; } public function getAllMap() { return $this->map; } } ``` 就这么简单。