Skip to content

Commit

Permalink
Add support for unix socket connection to redis (#5179)
Browse files Browse the repository at this point in the history
  • Loading branch information
moparisthebest authored and nerzhul committed Feb 6, 2017
1 parent 3e30731 commit 5da3ed1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/database-redis.cpp
Expand Up @@ -44,7 +44,8 @@ Database_Redis::Database_Redis(Settings &conf)
}
const char *addr = tmp.c_str();
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) {
throw DatabaseException("Cannot allocate redis context");
} else if (ctx->err) {
Expand Down

0 comments on commit 5da3ed1

Please sign in to comment.