App\Controller\Page::cache_set PHP Method

cache_set() public method

缓存设置
public cache_set ( )
    function cache_set()
    {
        $result = $this->cache->set("swoole_var_1", "swoole");
        if ($result) {
            echo "cache set success. Key=swoole_var_1";
        } else {
            echo "cache set failed.";
        }
    }