1程序根目录下 .env文件配置redis服务器参数
REDIS_HOST=127.0.0.1
REDIS_AUTH=(null)
REDIS_PORT=6379
REDIS_DB=1
2Controller文件中
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace AppController;
use HyperfUtilsApplicationContext;
class IndexController extends AbstractController
{
private $redis;
public function index()
{
$user = $this->request->input('user', 'Hyperf');
$method = $this->request->getMethod();
$container = ApplicationContext::getContainer();
$this->redis = $container->get(Redis::class);
$this->redis->set('name',12345);
$user.=$this->redis->get('name');
return [
'method' => $method,
'message' => "Hello {$user}.",
];
}
}