redis를 사용하기 위한 언어별 client는 공식사이트에 리스트업 되어있다. https://redis.io/clients 그 중 C++의 redis-plus-plus를 설치해보고자 한다. redis-plus-plus는 C의 hiredis를 필요로 하기 때문에 hiredis를 먼저 설치해야 한다. hiredis https://github.com/redis/hiredis 다운을 받고 CMake로 vs solution 파일을 먼저 생성해준다. 더보기 CMake 설치 https://makga.tistory.com/341 Where is the sourece code: CMakeLists.txt 파일이 있는 경로 Where to build the binaries: sln 파일등 VC++ project 관련 파..