尝试使用Laravel使用AWS Elastic Cache Redis
我想在Laravel的调度器中使用onOneServer选项,因此在作为共享缓存服务器时使用了AWS的Elastic Cache Redis并记录了下来。
连接测试
进入目标的EC2实例并进行ping操作。
ping your-elastic-cache-host
环境变量设置
REDIS_HOST=your-elastic-chache-host
REDIS_PASSWORD=null // 今回はAUTH設定していないため
REDIS_PORT=6379
使用Laravel进行连接测试
请创建一个合适的命令,并检查其是否可操作。
cd to/your/dir
php artisan make:command RedisConnectionSample
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Redis;
class RedisConnectionSample extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'connect:redis';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
Redis::set('key', 'value');
$data = Redis::get('key');
var_dump($data);
}
}
php artisan connect:redis
当遇到操作不成功的情况时,可能是因为没有安装phpredis或predis,此时应该安装它们。对于Amazon Linux 2,可以从extras获取安装包。