-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[redis-plus-plus] Add new port #8846
[redis-plus-plus] Add new port #8846
Conversation
only supports Unix? windows support |
@voskrese thanks for your attention. Since this port needs to depend on hiredis that only supports Unix. redis-plus-plus currently only supports Unix too. |
work msvc 2017 |
old version work msvc 2017
|
@voskrese thanks again for your comments. I have compared with the two source codes and found that they are from different addresses. The CMakelist.txt files are different too. I will try to support Windows based on current source code URL. But it seems that |
/azp run |
1 similar comment
/azp run |
This is a C++ client for Redis. It's based on hiredis, and written in C++ 11.
It depends on hiredis, the related PR #8845.
Since hiredis only supports dynamic build on Unix.
redis-plus-plus only supports Unix too.
When building test, it needs
find_library(HIREDIS_STATIC_LIB libhiredis.a)
, so I disable test now.Related issue #8840.
Note: this port doesn't contain any feature.