Skip to content

xredis-server is a redis server framework library write by C++, using this library you can develop redis protocol compatible server easily

License

Notifications You must be signed in to change notification settings

0xsky/libredis-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Author Platform NoSQL License

###中文说明 xredis-server

redis-server is a redis server framework library write by C++, using this library you can develop redis protocol compatible server easily.

Dependencies

xredis-server requires libevent

###install

git clone https://github.com/0xsky/xredis-server.git
cd xredis-server
make

###build example

make example

###usage:

#include "../src/xRedisServerLib.h"

class xRedisConnect :public xRedisConnectorBase
{
public:
    xRedisConnect();
    ~xRedisConnect();
private:
};

class xRedisServer :public xRedisServerBase
{
public:
    xRedisServer() {

    }
    ~xRedisServer() {

    }

public:
    bool Init()
    {
        CmdRegister();
    }

private:
    bool CmdRegister()
    {
        if (!SetCmdTable("get", (CmdCallback)&xRedisServer::ProcessCmd_get)) return false;
        return true;
    }

    void ProcessCmd_get(xRedisConnect *pConnector)
    {
        if (2 != pConnector->argc) {
            SendErrReply(pConnector, "cmd error:", "error arg");
            return;
        }
        SendBulkReply(pConnector, pConnector->argv[1]);
        return;
    }

private:

};

int main(int argc, char **argv)
{
    xRedisServer xRedis;
    xRedis.Init();
    std::string pass = "123456";
    xRedis.SetPassword(pass);
    xRedis.Start("127.0.0.1", 6479);

    while (1) {
        usleep(1000);
    }
    
    return 0;
}

DOC

example [examples](https://github.com/0xsky/xredis-server/tree/master/example) directory for some examples

QQ Group: 190107312

author: xSky

Blog: xSky's Blog

About

xredis-server is a redis server framework library write by C++, using this library you can develop redis protocol compatible server easily

Resources

License

Stars

Watchers

Forks

Packages

No packages published