1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-27 06:50:29 +02:00

Add support for unix socket connection to redis (#5179)

This commit is contained in:
Travis Burtrum 2017-02-06 13:10:03 -05:00 committed by Loïc Blot
parent 3e30731c1a
commit 5da3ed19a3

View File

@ -44,7 +44,8 @@ Database_Redis::Database_Redis(Settings &conf)
} }
const char *addr = tmp.c_str(); const char *addr = tmp.c_str();
int port = conf.exists("redis_port") ? conf.getU16("redis_port") : 6379; int port = conf.exists("redis_port") ? conf.getU16("redis_port") : 6379;
ctx = redisConnect(addr, port); // if redis_address contains '/' assume unix socket, else hostname/ip
ctx = tmp.find('/') != std::string::npos ? redisConnectUnix(addr) : redisConnect(addr, port);
if (!ctx) { if (!ctx) {
throw DatabaseException("Cannot allocate redis context"); throw DatabaseException("Cannot allocate redis context");
} else if (ctx->err) { } else if (ctx->err) {