redisclient
redisclient copied to clipboard
Boost.asio based Redis-client library.
Python 3.5 aioredis 1.3.1 In our practical work we face that function PSBUSCRIBE evaluates string for parameter `*.ABC` as `*.ABC*` That leads to service react to messages to channels FIRST.ABCDEFG...
Winodw build redisclient failed。 Could someone help me? >D:\DevelopmentEnvironment\Workspaces\redisclient\redisclient\src\redisclient\impl\redisclientimpl.cpp(53): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 1>D:\DevelopmentEnvironment\Workspaces\redisclient\redisclient\src\redisclient\impl\redisclientimpl.cpp(53): error C2146: syntax error: missing ';'...
Removed dependency of boost. Added better naming convention according to the C++ core guidelines. Fixed some APIs. Added source folder. More changes eventually will come. This is just a little...
Hello. This commit removes a compile error. I got the below error. ``` redisclient/src/redisclient/impl/redisasyncclient.cpp:34:9: error: ignoring return value of function declared with 'nodiscard' attribute [-Werror,-Wunused-result] std::move(pimpl->socket); ``` Algthough the below...
``` class IoService { public: IoService(int threadNum = 1) : m_io{}, m_work(new boost::asio::io_service::work(m_io)) { for (int i = 0; i < threadNum; i++) { auto th = std::make_shared(boost::bind(&boost::asio::io_service::run, &m_io)); m_threadPool.push_back(th);...
compile error: redisclient/impl/redisclientimpl.cpp:64:25: error: unknown type name '__suseconds_t'; did you mean 'suseconds_t'?
hi i am facing a core dump when call `RedisSyncClient::command()` function. **My env :** boost: 1.7.0 gcc: 6.3.0 os: centos 7.6 **gdb's bt:** (gdb) bt #0 0x00007f46f5e1295f in __memmove_ssse3_back ()...
Multiple thread may excute asyncWrite at the same time. 1. Thread A request quite a lot RedisAsyncClient::command, all the command post to RedisClientImpl::strand. 2. Thread B execute commands in strand...
so the client can see the actual subject notified.
error C2039: 'local': is not a member of 'boost::asio'