#include "drogon/nosql/RedisClient.h"
namespace drogon
{
namespace nosql
{
std::shared_ptr<RedisClient> RedisClient::newRedisClient(
    const trantor::InetAddress & ,
    size_t ,
    const std::string & ,
    const unsigned int ,
    const std::string & )
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
}  
}  