qredisclient
qredisclient copied to clipboard
:key: Asynchronous Qt-based Redis client with TLS support.
I want to include this library (QredisClient) in my existing CMake project. How can i do that? thank you!
Didn't find anything in doc, so I was wondering if the function is thread-safe or not?
I have successfully ported the client environment to my project and would like the API documentation to be more detailed.
src\qredisclient\responseparser.cpp:80:45: error: invalid conversion from 'void* (*)(const redisReadTask*, int)' to 'void* (*)(const redisReadTask*, size_t) {aka void* (*)(const redisReadTask*, long long unsigned int)}' [-fpermissive] RedisClient::ResponseParser::freeObject}; ^ src\qredisclient\responseparser.cpp:80:45: error: invalid conversion from...
Hello i try to compile main class which writed in read.md file. i take invalid user-defined conversion error from this lines; // Run async command with callback connection.command({"PING"}, [](RedisClient::Response r)...
I would like to work with this API, and I like to understand things through examples. They just show me how the API is intended to be used. How long...