Google User
Google User

Reputation: 171

Laravel Redis Error - Cannot use SAVE with a cluster of connections

I am new in Redis. Is anyone know, why these error showing? I am using Laravel.

Upvotes: 0

Views: 3070

Answers (1)

aM-Vee
aM-Vee

Reputation: 403

www/projectname/app/config/database.php

Find,

'redis' => array(
       'cluster' => false,
       'default' => array(
            'host'     => '127.0.0.1',
            'port'     => 6379,
            'database' => 0,
        )
 );

If ‘cluster’ is true, make it false. May be your issue will solve.

Upvotes: 5

Related Questions