als u predis . gebruikt , dan gooit het Predis\Connection\ConnectionException
Fout bij het lezen van de regel van de server. [tcp://127.0.0.1:6379] <--wanneer redis niet is aangesloten
dus vang die uitzondering, je krijgt je redis wel of niet aangesloten.
use Illuminate\Support\Facades\Redis;
public function redis_test(Request $request){
try{
$redis=Redis::connect('127.0.0.1',3306);
return response('redis working');
}catch(\Predis\Connection\ConnectionException $e){
return response('error connection redis');
}