Redis with unix socket

Lakjin

Active Member
Followed the directions at https://www.mailwizz.com/kb/using-redis-cache-mutexes/ but want to use redis via unix socket, so I did this:

Code:
    'cache' => array(

        'class' => 'common.components.cache.RedisCache',

        'scheme' => 'unix',

        'path' => '/path/to/redis.sock',

    ),

    'mutex' => array(

        'class' => 'common.components.mutex.RedisMutex',

        'scheme' => 'unix',

        'path' => '/path/to/redis.sock',

    ),

But mailwizz crashes with this. Any idea what's up?
 
You'll have to use the TCP connections, we don't support unix socket connection for now, nor we plan to do so.
 
Back
Top