通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
# 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; } } ``` 就这么简单。