cpp_redis_streams_client.cpp hangs
sab24 opened this issue · 0 comments
sab24 commented
Describe the bug
A clear and concise description of what the bug is.
cpp_redis_streams_client hangs
To Reproduce
Steps to reproduce the behavior:
- git clone https://github.com/cpp-redis/cpp_redis.git
- cd cpp_redis
- git submodule init && git submodule update
- mkdir build && cd build
- CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake .. -DCMAKE_BUILD_TYPE=Release
- make
- make install
- vi examples/CMakeLists.txt, change line to target_link_libraries(${EXAMPLE} cpp_redis tacopie)
- cd examples
- mkdir build
- cd build
- CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake ..
- ./cpp_redis_streams_client
Expected behavior
Some std::cout output, the program seems to hang before that line.
Is this feature already implemented in cpp_redis?