redox icon indicating copy to clipboard operation
redox copied to clipboard

Modern, asynchronous, and wicked fast C++11 client for Redis

Results 35 redox issues
Sort by recently updated
recently updated
newest added

Some Redis commands, such as `SMISMEMBER`, return a list of integers. Trying to treat the reply as a vector doesn't work because the reply object has already parsed the data...

Hello there. Please add this library to conan center. To easy install in projects. https://conan.io/center/ Thanks.

I'm assuming this variation shouldn't be a problem, but if I were to execute: ``` rdx.command({"multi"}); rdx.command({"SET", "number", "8"}); rdx.command({"publish", "info", "number_updates"}); rdx.command({"exec"}); ``` * would it execute as an...

Issue: [ 41%] Built target redox [ 50%] Linking CXX executable pub_sub /usr/bin/ld: libredox.so.0.3.0: undefined reference to `hi_malloc(unsigned long)' collect2: error: ld returned 1 exit status make[2]: *** [CMakeFiles/pub_sub.dir/build.make:87: pub_sub]...

Hi, I was able to compile my application cpp but when I tried to link, I have the below error: /tmp/ccIM35WN.o: In function `main': MyApp.cpp:(.text+0x47f): undefined reference to`redox::Redox::connect(std::__cxx11::basic_string const&, int,...

I'm trying to perform authentication via the `AUTH` command. This works just fine through `Redox` but I can't do the same for `Subscriber` since it doesn't allow command execution. Are...

Can this lib be built on and for Windows? Either way, you should specify it explicitly in the description to avoid this question in the future :)

I have just build the redox package . Now how do i link the headers and libraries in cmakelist.txt file? ``` cmake_minimum_required(VERSION 2.6 FATAL_ERROR) project(pcl_visualizer_viewports) find_package(PCL 1.2 REQUIRED) include_directories(${PCL_INCLUDE_DIRS} /home/rob/redox/include/)...

Hello, This PR adds the generation of a [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/) file for redox when calling `make/ninja/etc. install`. In brief, pkg-config eases the utilization of software libraries by allowing the developers of...