$hello]); } public function json(Request $request) { Redis::set('good', 'well'); // another way $r = Redis::connection('cache'); $r->set('good', 'cache'); // cache Cache::set('cache', 123); return json(['code' => 0, 'msg' => 'ok']); } }